Board logo

标题: 40元求助两个小问题! [打印本页]

作者: stardnafox    时间: 2021-2-1 09:33     标题: 40元求助两个小问题!

本帖最后由 stardnafox 于 2021-2-1 10:05 编辑

1.删除指定目录d:test\下的所有子目录或者子子目录中的文件夹名称是“AA”的文件夹及AA文件夹内的所有子文件夹以及文件。
2.删除指定目录d:test\下的所有子目录或者子子目录中的文件夹名称是“BB”的文件夹内的所有子文件夹或子子文件夹里,创建日期大于7天的文件。
可以加我qq付款,qq号:26057010
作者: Batcher    时间: 2021-2-1 10:10

回复 1# stardnafox


test1.bat
  1. @echo off
  2. set "FolderName=AA"
  3. for /f "delims=" %%i in ('dir /b /s /ad "D:\Test"') do (
  4.     if "%%~nxi" equ "%FolderName%" (
  5.         if exist "%%i" (
  6.             rd /s /q "%%i"
  7.         )
  8.     )
  9. )
复制代码

作者: Batcher    时间: 2021-2-1 10:17

回复 1# stardnafox


test2.bat
  1. @echo off
  2. REM setlocal enabledelayedexpansion
  3. set "FolderName=BB"
  4. for /f "delims=" %%i in ('dir /b /s /ad "D:\Test"') do (
  5.     if "%%~nxi" equ "%FolderName%" (
  6.         if exist "%%i" (
  7.             call :RemoveFolder "%%i"
  8.         )
  9.     )
  10. )
  11. goto :eof
  12. :RemoveFolder
  13. set "SrcDir=%~1"
  14. set "DaysAgo=7"
  15. powershell -c "Get-ChildItem -Path '%SrcDir%' -Recurse -ErrorAction:SilentlyContinue | Where-Object -FilterScript {(((get-date) - ($_.CreationTime)).days -gt %DaysAgo% -and $_.PsISContainer -ne $True)} | Remove-Item -Force"
复制代码

作者: stardnafox    时间: 2021-2-1 10:50

非常感谢老师!我去QQ群发红包!




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