WINDOWS定時自動刪除檔案

2022-02-13 04:14:43 字數 2509 閱讀 3386

命令存放位置 c:\windows\system32

刪除三天前的檔案

forfiles /p i:\serverbak\2005 /s /m *.* /d -2 /c "cmd /c del @file"

說明:forfiles是2003自帶的命令,非常好用,詳細可以forfiles/?查詢。可以複製到xp中使用,複製到2000中測試失敗。

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"

開啟「任務計畫程式」介面,點選視窗右側的「操作」欄下的[建立基本任務],開啟如下介面: 

在「名稱」處輸入建立基本任務的名稱,隨便起名。描述可以不寫。點選【下一步】,如下圖所示: 

此處選擇任務執行週期,點【下一步】,如下圖所示: 

windows下自動刪除日誌檔案

每天自動執行的任務都會生成日誌檔案,為了避免檔案過多給伺服器大利來壓力,使用windows批處理指令碼自動刪除 delete log.bat echo off forfiles p d kettlejob log m d txt d 6 c cmd c del f path echo on 刪除d ...

定時刪除檔案指令碼

1.刪除指令碼 vi delete bin bash 刪除檔案 解釋 找到 fastdfds fastdfs 目錄下 10天前修改的 名字任意 並刪除 find fastdfs fastdfs mtime 1 name exec rm rf 刪除資料夾 find fastdfs fastdfs mt...

定時刪除檔案指令碼

1.刪除指令碼 vi delete bin bash 刪除檔案 解釋 找到 fastdfds fastdfs 目錄下 10天前修改的 名字任意 並刪除 find fastdfs fastdfs mtime 1 name exec rm rf 解釋 找到 fastdfds fastdfs 目錄下 大於...