联盟域名:www.cn-dos.net 论坛域名:www.cn-dos.net/forum DOS,代表着自由开放与发展,我们努力起来,学习FreeDOS和Linux的自由开放与GNU精神,共同创造和发展美好的自由与GNU GPL世界吧!
@echo off lmod > nul dir /b *.* | lmod /L* ren "[]" abc[#].jpg > %temp%\temp.bat call %temp%\temp.bat del %temp%\temp.bat
@echo off :: 要求你的文件名中必须含有jpg这个扩展名 dir /b | find /n /i "jpg" > %temp%\temp.txt for /f "delims=[] tokens=1,*" %%i in (%temp%\temp.txt) do ren "%%j" abc%%i.jpg && echo Rename "%%j" to "abc%%i.jpg" del %temp%\temp.txt