apeng1 当前离线
列兵
qixiaobin0715 当前离线
大校
@echo off for /d %%i in (*) do ( if exist "%%i\*.pptx" ( ren "%%i\*.pptx" "%%i.pptx" ) else if exist "%%i\*.ppt" ( ren "%%i\*.ppt" "%%i.ppt" ) ) pause复制代码
TOP
@echo off for /d %%i in (*) do ( pushd "%%i" for /f "delims=" %%j in ('dir /s /b /a-d *.ppt') do ( ren "%%j" "%%i%%~xj" ) popd ) pause复制代码