blob: 70edd40d2c69230558cf092ee54021c6a9f80a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@echo off
rem RCS: @(#) $Id: mkd.bat,v 1.8 2001/11/10 10:38:47 davygrvy Exp $
if exist %1\nul goto end
md %1
if errorlevel 1 goto end
echo Created directory %1
:end
|