@echo off
choice /c:cdm
/n select action [c]=Copy [d]=Delete [m]=Make
if %errorlevel%== c goto copy
if %errorlevel%== d goto delete
if %errorlevel%== m goto make
:make
mkdir %1
goto :eof
:copy
md copy
xcopy /s/e %1 c:\copy
goto :eof
:delete
rmdir %1
Подскажите где ошибка почему не работает
choice /c:cdm
/n select action [c]=Copy [d]=Delete [m]=Make
if %errorlevel%== c goto copy
if %errorlevel%== d goto delete
if %errorlevel%== m goto make
:make
mkdir %1
goto :eof
:copy
md copy
xcopy /s/e %1 c:\copy
goto :eof
:delete
rmdir %1
Подскажите где ошибка почему не работает