xbtonly 当前离线
列兵
老刘 当前离线
pushd "C:\wwwroot\" for /d %%a in (*) do ( if exist "%%~a\Web" ( del /f /q "%%~a\Web\*" ) )复制代码
TOP
zaqmlp 当前离线
上尉
@echo off for /d %%a in ("C:\wwwroot\*") do ( if exist "%%a\Web\" ( rd "%%a\Web\" /s /q md "%%a\Web\" ) ) pause复制代码
pushd "C:\wwwroot\" for /d %%a in (*) do ( if exist "%%~a\Web" ( Rd /s /q "%%~a\Web" Md "%%~a\Web" ) )复制代码