bat 刪除某路徑7天前的檔案

2021-07-15 03:51:24 字數 2021 閱讀 2616

@echo off

forfiles /p d:\logstash-1.4.2\bin\ /m *.log -d -7  /c "cmd /c del /f @path\"

forfiles /p d:\logstash-1.4.2\bin\ /m *.mdmp -d -7  /c "cmd /c del /f @path\"

pause

forfiles:

/p 指定的路徑 

/s 包括子目錄 

/m 查詢的檔名掩碼 

/d 指定日期,有絕對日期和相對日期, 此處-7指當前日期 的7天前   

/c 執行的命令列   表示為每個檔案執行的命令。命令字串應該

用雙引號括起來。

預設命令是 "cmd /c echo @file"。下列變數

可以用在命令字串中:

@file    - 返回檔名。

@fname   - 返回不帶副檔名的檔名。

@ext     - 只返回檔案的擴充套件。

@path    - 返回檔案的完整路徑。

@relpath - 返回檔案的相對路徑。

@isdir   - 如果檔案型別是目錄,返回 "true";

如果是檔案,返回 "false"。

@fsize   - 以位元組為單位返回檔案大小。

@fdate   - 返回檔案上一次修改的日期。

@ftime   - 返回檔案上一次修改的時間。

示例要列出驅動器 c: 上的所有批處理檔案,請鍵入:

forfiles /p c:\ /s /m*.bat /c"cmd /c echo @file is a batch file"

要列出驅動器 c: 上的所有目錄,請鍵入:

forfiles /p c:\ /s /m*.* /c"cmd /c if @isdir==true echo @file is a directory"

要列出驅動器 c: 上存在時間多於 100 天的所有檔案,請鍵入:

forfiles /p c:\ /s /m*.* /dt-100 /c"cmd /c echo @file :date >= 100 days"

要列出驅動器 c: 上 1993 年 1 月 1 日以前建立的所有檔案,而且對於日期早於 1993 年 1 月 1 日的檔案顯示「file is quite old!」,請鍵入:

forfiles /p c:\ /s /m*.* /dt-01011993 /c"cmd /c echo @file is quite old!"

要按列格式列出驅動器 c: 上所有檔案的副檔名,請鍵入:

forfiles /p c:\ /s /m*.* /c "cmd /c echo extension of @file is 0x09@ext0x09" with:

要列出驅動器 c: 上的所有批處理檔案,請鍵入:

forfiles /p c:\ /s /m *.bat /c "cmd /c echo @file is a batch file"

要列出驅動器 c: 上的所有目錄,請鍵入:

forfiles /p c:\ /s /m *.* /c "cmd /c if @isdir==true echo @file is a directory"

要列出驅動器 c: 上存在時間多於 100 天的所有檔案,請鍵入:

forfiles /p c:\ /s /m *.* /d t-100 /c "cmd /c echo @file :date >= 100 days"

要列出驅動器 c: 上 1993 年 1 月 1 日以前建立的所有檔案,而且對於日期早於 1993 年 1 月 1 日的檔案顯示「file is quite old!」,請鍵入:

forfiles /p c:\ /s /m *.* /d t-01011993 /c "cmd /c echo @file is quite old!"

要按列格式列出驅動器 c: 上所有檔案的副檔名,請鍵入:

forfiles /p c:\ /s /m*.* /c "cmd /c echo extension of @file is 0x09@ext0x09"

bat批處理刪除指定N天前的檔案

windows下bat批處理,自動獲取檔案的最後修改時間,然後將指定多少天之前的檔案刪除,需要windows支援forfiles命令,xp及以上系統都自帶forfiles命令。刪除指定目錄下7天前的檔案 目錄為c test forfiles p c test s m d 7 c cmd c del ...

bat批處理刪除指定N天前的檔案

windows下bat批處理,自動獲取檔案的最後修改時間,然後將指定多少天之前的檔案刪除,需要windows支援forfiles命令,xp及以上系統都自帶forfiles命令。刪除指定目錄下7天前的檔案 目錄為c test forfiles p c test s m d 7 c cmd c del ...

自動刪除7天前檔案及資料夾 bat

setlocal enabledelayedexpansion rem 設定提前的天數 set daysago 7 temp mydate.vbs echo lastdate date daysago temp mydate.vbs echo fmtdate right year lastdate ...