zaqmlp 当前离线
上尉
@echo off&cd /d "%~dp0" set /p input=enter: set n=101 :loop if "%~1" equ "" (goto :end) if not defined input (set "input=%~n1") echo;"%~1" --^> "%input%%n:~-2%%~x1" ren "%~1" "%input%%n:~-2%%~x1" set /a n+=1 shift goto :loop :end pause exit复制代码
TOP