diff options
Diffstat (limited to 'win/mkd.bat')
-rw-r--r-- | win/mkd.bat | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/win/mkd.bat b/win/mkd.bat new file mode 100644 index 0000000..61a66b8 --- /dev/null +++ b/win/mkd.bat @@ -0,0 +1,19 @@ +@echo off
+
+if exist %1 goto end
+
+if %OS% == Windows_NT goto winnt
+
+echo Add support for Win 95 please
+goto end
+
+goto success
+
+:winnt
+md %1
+if errorlevel 1 goto end
+
+:success
+echo created directory %1
+
+:end
|