bat文件放要处理的多个文件夹并列位置运行,会处理所有子文件夹中文件名前部含括号的
@echo off&cd/d "%~dp0"for /f "tokens=1* delims=)" %%i in ('dir/b/s/a-d "(*)?*")do ren "%%i)%%j" "%%j"pause