批处理删除当前文件夹下所有子目录中指定名字的文件夹

2024-12-21 10:41:42
推荐回答(1个)
回答1:

@echo off
for /f "delims=" %%i in ('dir /ad /b /s "E"') do (
   rd /s /q "%%i"
)