chouxia 当前离线
五级士官
评分人数
GNU 当前离线
上尉
TOP
WHY 当前离线
上校
这个代码应该怎么搞?
CrLf 当前离线
论坛巡查
yangfengoo 当前离线
@echo off for /l %%a in (30 1 70) do "C:\Program Files\WinRAR\WinRAR.exe" -IBCK a cs.rar %%a.txt复制代码
pcl_test 当前离线
荣誉版主
@echo off set "临时文件夹=%tmp%\$rar" md "%临时文件夹%\" for /l %%a in (30 1 70) do copy "%%a.txt" "%临时文件夹%\" cd /d "%临时文件夹%\" "C:\Program Files\WinRAR\WinRAR.exe" -IBCK a "%~dp0test.rar" *.txt ::rd "%临时文件夹%\" /s /q pause复制代码
(for /l %%i in (30 1 70) do echo;%%i.txt)>file.Lst "%programfiles%\WinRAR\rar.exe" a a.rar @file.Lst复制代码