Board logo

标题: [文件操作] 批处理如何删除指定目录下得文件夹和文件夹里面的文件,按N天前创建日期算 [打印本页]

作者: tiaoyaonan    时间: 2021-10-18 12:57     标题: 批处理如何删除指定目录下得文件夹和文件夹里面的文件,按N天前创建日期算

比如今天是10,18日,我要删除C:/1目录里,创建日期7天前的文件夹和文件,也就是11日在往前的都删掉,保留12日到18日这期间的文件夹


谢谢
作者: idwma    时间: 2021-10-18 15:20

本帖最后由 idwma 于 2021-10-18 16:15 编辑
  1. #@&cls&powershell "type '%~0'|out-string|iex"&pause&exit
  2. dir C:/1|%{
  3.     if ([int](((get-date)-$_.CreationTime).TotalDays) -ge 7){
  4.         del $_.fullname
  5.     }
  6. }
复制代码

作者: tiaoyaonan    时间: 2021-10-18 16:23

回复 2# idwma

谢谢,这个删除前会提示按Y,确认什么的,请问可以 设置成不提示,直接删除吗? 应该怎么改?
作者: idwma    时间: 2021-10-18 16:28

回复 3# tiaoyaonan
  1.     #@&cls&powershell "type '%~0'|out-string|iex"&pause&exit
  2.     dir C:/1|%{
  3.         if ([int](((get-date)-$_.CreationTime).TotalDays) -ge 7){
  4.             del $_.fullname -Recurse
  5.         }
  6.     }
复制代码

作者: went    时间: 2021-10-18 17:29

也可以用forfiles
  1. forfiles /p "c:\1" /d -7 /c "cmd /c del /f @path"
复制代码

作者: Batcher    时间: 2021-10-18 17:34

回复 1# tiaoyaonan


参考:批处理删除指定天数日期之前的文件
http://bbs.bathome.net/thread-3334-1-1.html
作者: tiaoyaonan    时间: 2021-10-19 08:38

回复 6# Batcher

谢谢
作者: tiaoyaonan    时间: 2021-10-19 08:38

回复 5# went


    这个我试过,不删文件夹
作者: tiaoyaonan    时间: 2021-10-19 08:38

回复 4# idwma


    谢谢




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