标题: 付费求解 [打印本页]
作者: xbtonly 时间: 2018-2-28 17:05 标题: 付费求解
批量删除c:/wwwroot/*(几十个)/web 这个文件夹下所有文件
作者: 老刘 时间: 2018-2-28 17:44
本帖最后由 老刘 于 2018-2-28 17:51 编辑
- pushd "C:\wwwroot\"
- for /d %%a in (*) do (
- if exist "%%~a\Web" (
- del /f /q "%%~a\Web\*"
- )
- )
复制代码
作者: xbtonly 时间: 2018-2-28 19:26
你好,感谢热情回复。
这个执行了下来之后能删除文件,但web下的子文件夹不能删除,隐藏文件也需要删除,等于是清空。
有偿求解。
作者: zaqmlp 时间: 2018-2-28 19:39
- @echo off
- for /d %%a in ("C:\wwwroot\*") do (
- if exist "%%a\Web\" (
- rd "%%a\Web\" /s /q
- md "%%a\Web\"
- )
- )
- pause
复制代码
作者: 老刘 时间: 2018-2-28 20:05
回复 3# xbtonly - pushd "C:\wwwroot\"
- for /d %%a in (*) do (
- if exist "%%~a\Web" (
- Rd /s /q "%%~a\Web"
- Md "%%~a\Web"
- )
- )
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |