summaryrefslogtreecommitdiffstats
path: root/win/mkd.bat
blob: e08280b1e9bc6d0fca4d5e1872e85c0aaed877ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@echo off
rem RCS: @(#) $Id: mkd.bat,v 1.4.2.1 2002/06/10 05:38:27 wolfsuit Exp $

if exist %1\nul goto end

md %1
if errorlevel 1 goto end

echo Created directory %1

:end