summaryrefslogtreecommitdiffstats
path: root/win/mkd.bat
blob: 9e1c0735910ff266c8ec2ba09cda5b44d2902152 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@echo off
rem SCCS: %Z% $Id: mkd.bat,v 1.1 1998/07/01 18:32:09 escoffon Exp $ 


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