返回列表 发帖
回复 10# xiong8707
@echo off
@set /p input=0,1,2
if "%input%"=="0" goto A
if "%input%"=="1" goto B
if "%input%"=="2" goto C
pause>nul
exit
:A
md test1
pause
exit
:B
md test2
pause
exit
:C
md test3
pause
exitCOPY
输入0,1,2 分别创建文件夹test1,test2,test3

TOP

回复 14# nanoking


    set no=:
这个设置是什么意思啊?

TOP

返回列表