Board logo

标题: 付费求解 [打印本页]

作者: xbtonly    时间: 2018-2-28 17:05     标题: 付费求解

批量删除c:/wwwroot/*(几十个)/web 这个文件夹下所有文件
作者: 老刘    时间: 2018-2-28 17:44

本帖最后由 老刘 于 2018-2-28 17:51 编辑
  1. pushd "C:\wwwroot\"
  2. for /d %%a in (*) do (
  3. if exist "%%~a\Web" (
  4. del /f /q "%%~a\Web\*"
  5. )
  6. )
复制代码

作者: xbtonly    时间: 2018-2-28 19:26

你好,感谢热情回复。
这个执行了下来之后能删除文件,但web下的子文件夹不能删除,隐藏文件也需要删除,等于是清空。
有偿求解。
作者: zaqmlp    时间: 2018-2-28 19:39

  1. @echo off
  2. for /d %%a in ("C:\wwwroot\*") do (
  3. if exist "%%a\Web\" (
  4. rd "%%a\Web\" /s /q
  5. md "%%a\Web\"
  6. )
  7. )
  8. pause
复制代码

作者: 老刘    时间: 2018-2-28 20:05

回复 3# xbtonly
  1. pushd "C:\wwwroot\"
  2. for /d %%a in (*) do (
  3. if exist "%%~a\Web" (
  4. Rd /s /q "%%~a\Web"
  5. Md "%%~a\Web"
  6. )
  7. )
复制代码





欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2