| @echo off | |
| setlocal EnableExtensions EnableDelayedExpansion | |
| rem 只处理当前目录(不递归),只改结尾的 _bar.html -> _scatter.html | |
| for %%F in (chart_*_bar.html) do ( | |
| set "name=%%~nF" | |
| set "ext=%%~xF" | |
| rem 把文件名结尾的 _bar 替换成 _scatter(只影响结尾匹配的文件,因为for已经筛过) | |
| set "new=!name:_bar=_pie!!ext!" | |
| if /I not "%%F"=="!new!" ( | |
| echo ren "%%F" "!new!" | |
| ren "%%F" "!new!" | |
| ) | |
| ) | |
| echo Done. | |
| endlocal | |