swanseabrian 当前离线
五级士官
TOP
qixiaobin0715 当前离线
大校
评分人数
@echo off for /f "delims=" %%i in ('dir /b /s /ad') do ( pushd %%i for /f %%j in ('dir^|findstr /r /c:" 1 个文件"') do rd /s /q %%i popd ) pause复制代码
idwma 当前离线
少校
powershell "(dir -ex *.* -r)|foreach{if ((dir $_.fullname|measure|foreach{$_.count}) -eq 1){del -r $_.fullname}}"复制代码