批處理備份及刪除,forfiles命令詳解

2021-05-25 03:18:09 字數 2234 閱讀 9514

備份:

xcopy//server/bak/*.*    d:/serverbak /s /e /v /c / d /y /h            

at 05:30 shutdown -s -f

說明:xcopy命令引數可以用xcopy/?檢視

at 05:30 shutdown -s -f       表示5:30分自動關機

刪除三天前的檔案

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

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

"

批處理資料備份 壓縮及刪除

echo 開始備份資料 echo off exp lanni lanni 192.168.0.10 orcl file d 1 資料備份 date 0,4 date 5,2 date 8,2 time 0,2 time 3,2 time 6,2 dmp echo 資料備份完畢 echo 開始壓縮資料...

批處理備份及刪除,forfiles命令詳解

備份 xcopy server bak d serverbak s e v c d y h at 05 30 shutdown s f 說明 xcopy命令引數可以用xcopy 檢視 at 05 30 shutdown s f 表示5 30分自動關機 刪除三天前的檔案 forfiles p i se...

批處理備份及刪除,forfiles命令詳解

備份 xcopy server bak d serverbak s e v c d y h at 05 30 shutdown s f 說明 xcopy命令引數可以用xcopy 檢視 at 05 30 shutdown s f 表示5 30分自動關機 刪除三天前的檔案 forfiles p i se...