只能删除子目录中的123456文件夹,如果在根目录建一个123456文件夹无法删除,看一下我的代码哪里错了。
[ Last edited by HAT on 2008-11-17 at 11:14 ]
for %%a in (c d e f) do (if exist %%a: (for /f "delims=" %%b in ('dir /s /b /d /a "%%a:\123456"') do (rd /s/q "%%b")))[ Last edited by HAT on 2008-11-17 at 11:14 ]
