huyoyoo 当前离线
列兵
乱码 当前离线
一级士官
Set fso = CreateObject("Scripting.FileSystemObject") For Each folder In fso.GetFolder(".").SubFolders For Each sfolder In folder.SubFolders sfolder.Delete True Next Next MsgBox "OK"
TOP
apang 当前离线
上将
@echo off (for %%a in (c d e f g h i j k l m n o p q r s t u v w x y z) do ( for /f "delims=" %%b in ('dir /ad/b/s %%a:\files') do ( for /d %%c in ("%%b\*") do ( for /d %%d in ("%%c\*") do rd /s /q "%%d" ))))>nul 2>&1复制代码