slayers7 当前离线
列兵
Five66 当前离线
上尉
@echo off for %%a in (*.*.mp3) do ( set "n=%%a" setlocal enabledelayedexpansion rename "!n!" "!n:*. =!" endlocal ) pause复制代码
TOP
Nsqs 当前离线
少尉
#PowerShell dir *.mp3|%{ren $_ ($_ -replace '\d+\. *(?=.+)')}复制代码
77七 当前离线
中校
@echo off rem 批处理保存为utf-8编码格式 chcp 65001 >nul for /f "tokens=1* delims=. " %%a in ('dir /b /a-d *.*.mp3') do ( ren "%%a. %%b" "%%b" ) pause复制代码
评分人数