popxxterry 当前离线
列兵
qixiaobin0715 当前离线
大校
@echo off for /f "delims=" %%i in ('dir /b /ad') do ( setlocal enabledelayedexpansion pushd "%%i" for /f "delims=" %%j in ('dir /b /a-d *.jpg') do ( set /a n+=1 ren "%%j" "Z(!n!).jpg" ) popd endlocal )复制代码
TOP