shuaige100 当前离线
六级士官
ren "%~nx1" 1.txt ren "%~nx2" 2.txt ren "%~nx3" 3.APK复制代码
评分人数
fastslz 当前离线
贵宾
@echo off :xx if "%~1"=="" goto end set /a num+=1 ren "%~1" "%num%%~x1" shift goto xx :end echo 非要知道文件数?有%num%个! pause复制代码
TOP
CrLf 当前离线
论坛巡查
@echo off set "tmp=%*" setlocal enabledelayedexpansion set cmd=?!cmdcmdline:*.bat^=! set cmd=!cmd:?" =?! for %%a in (!cmd:~1!) do ( set /a n+=1 echo %%a ) echo 有%n%个文件 pause复制代码