[已解决]win7 64系统,这2个bat代码,组合在一起,第2个代码就无效。这是啥原因?
2个代码各自单独运行,都正常。
如果放在1个bat文件里面。第一个代码先运行,再运行第2个代码,后面代码就无效。- echo 删除diy.exe-ylog.dxq-PSYN_OLD-~$-~WRL.tmp
- for %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
- if exist %%a: (
- cd /d %%a:\
- del /f /s /q /a diy*.exe
- del /f /s /q /a *.torrent
- del /f /s /q /a ylog.dxq
-
- )
- )
复制代码
- if exist "C:\Program Files" set "rar=C:\Program Files\WinRAR\WinRAR.exe"
- if exist "C:\Program Files (x86)" set "rar=C:\Program Files (x86)\WinRAR\WinRAR.exe"
-
- "%rar%" x -y -ibck "图片ACDsee244.rar" "C:\"
- "%rar%" x -y -ibck "图片ACDsee244.rar" "C:\Program Files"
复制代码
|