标题: 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- @echo off
- set "FolderName=AA"
- for /f "delims=" %%i in ('dir /b /s /ad "D:\Test"') do (
- if "%%~nxi" equ "%FolderName%" (
- if exist "%%i" (
- rd /s /q "%%i"
- )
- )
- )
复制代码
作者: Batcher 时间: 2021-2-1 10:17
回复 1# stardnafox
test2.bat- @echo off
- REM setlocal enabledelayedexpansion
- set "FolderName=BB"
- for /f "delims=" %%i in ('dir /b /s /ad "D:\Test"') do (
- if "%%~nxi" equ "%FolderName%" (
- if exist "%%i" (
- call :RemoveFolder "%%i"
- )
- )
- )
- goto :eof
-
- :RemoveFolder
- set "SrcDir=%~1"
- set "DaysAgo=7"
-
- 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 |