以楼主12楼举的代码例子,看不出什么重大密码。
1,父目录start 2\3\4\5\6\1.bat
2,子目录del 2\3\4\5\6\1.txt
一个简单的批处理启动位置的问题而已。。。
再说楼主在1楼发的代码,几行就可以写完的代码,就不要写成几十行!~- if "%choice%"=="0" goto a0
- if "%choice%"=="1" goto a1
- if "%choice%"=="2" goto a2
- if "%choice%"=="3" goto a3
- if "%choice%"=="4" goto a4
- if "%choice%"=="5" goto a5
- if "%choice%"=="6" goto a6
- if "%choice%"=="7" goto a7
- if "%choice%"=="8" goto a8
- if "%choice%"=="9" goto a9
- ........中间省略
- :a1
- type data\data\数字\1.DLL>> data\b1.txt
- goto :03
-
- :a2
- type data\data\数字\2.DLL>> data\b1.txt
- goto :03
- ......中间省略
复制代码 完全可以写成- @echo off&&color 1f
- rem 中间省略
- call:a %choice%
- goto :03
- :a
- type data\data\数字\%1.DLL>> data\b1.txt
复制代码
|