1@echo off
2rem RCS: @(#) $Id$
3
4if exist %1\nul goto end
5
6md %1
7if errorlevel 1 goto end
8
9echo Created directory %1
10
11:end
12
13
14
15