全选-右键重命名,是这种效果。
如果你想要你写的这种,可以下载一个ACDSEE软件,批量重命名就可以做到。
@echo off&setlocal enabledelayedexpansion
for /f "delims=" %%a in ('dir /ad /b /s ') do (
pushd "%%~a"
set /a n=1000
for /f "delims=" %%b in ('dir /a-d /b /on') do (
set /a n+=1
set m=!n:~1!
ren "%%~b" "%%~nxa-!m!%%~xb"
)
popd
)