Files
EWF/tools/safe_md.bat
2012-06-19 15:24:16 +02:00

11 lines
134 B
Batchfile

if exist "%1" goto already
echo Create directory [%1]
mkdir "%1"
goto end
:already
echo Directory [%1] already exists
goto end
:end