summaryrefslogtreecommitdiffstats
path: root/win/mkd.bat
blob: 1bd5ccb32a849d15f21fac5b1dc9e803dcf48a21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
@echo off

if exist %1\nul goto end

md %1
if errorlevel 1 goto end

echo Created directory %1

:end