直接上代码:
@echo off
setlocal
setlocal ENABLEDELAYEDEXPANSION
set path="C:\Users\llq\Desktop\test"
set suf="*.doc"
rem %path% #使用变量
for /f "delims=" %%i in (‘dir /b/s/a-d %path%\%suf%‘) do (
set h="%%~ni"
for %%j in (a b c d e f g h i j k l m n o p q r s t u v w x y z) do set h="!h:%%j=%%j!"
ren "%%i" "!h!"%suf%
)
endlocal
注:
关于代码中的语法,不懂的可以看我另一篇cmd命令语法,或直接看cmd的帮助。
版权声明:本文为博主原创文章,未经博主允许不得转载。
原文地址:http://blog.csdn.net/llq108/article/details/47185279