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