GNU 当前离线
上尉
@echo off powershell -c "Remove-Item *.aaa -Force -Recurse"复制代码
TOP
@echo off for /f "delims=" %%i in ('dir /b /ad ^| findstr "\.aaa$"') do ( rd /s /q %%i )复制代码