forfiles命令批量删除N天前文件

在整理手上几台SQL SERVER 2000的数据库备份时,一方面为了方便快速还原数据库,另外一方面为了备份冗余、备份方式统一(先备份到本地,然后收上磁带),将以前通过Symantec Backup Exec直接备份上带的作业改成了如下方式:

Step 1: 通过数据库维护计划将备份生成在本地磁盘M,完整备份保留2天,事务日志备份保留3天

M:\DB_BACKUP\FULL_BACKUP

M:\DB_BACKUP\LOG_BACKUP

Step 2:  备份完成后通过Symantec Backup Exec将备份文件收上磁带。

但是发现即使SQL SERVER 2000的数据库维护计划设置了删除几天前的备份文件,但是发现根本没有删除过期备份。于是只好使用dos命令来处理。刚开始想用forfiles命令,结果我搜索的时候,发现Windows 2000下没有forfiles命令,后来通过从第三方复制过来,发现Windows 2000下也可以使用forfiles(如果不借助于forfiles命令,直接用批处理命令完成这个,那简直痛苦死了)

关于forfiles命令的语法如下所示

C:\>forfiles /?

FORFILES [/P pathname] [/M searchmask] [/S]

[/C command] [/D [+ | -] {yyyy-MM-dd | dd}]

Description:

Selects a file (or set of files) and executes a

command on that file. This is helpful for batch jobs.

Parameter List:

/P    pathname      Indicates the path to start searching.

The default folder is the current working

directory (.).

/M    searchmask    Searches files according to a searchmask.

The default searchmask is ‘*‘ .

/S                  Instructs forfiles to recurse into

subdirectories. Like "DIR /S".

/C    command       Indicates the command to execute for each file.

Command strings should be wrapped in double

quotes.

The default command is "cmd /c echo @file".

The following variables can be used in the

command string:

@file    - returns the name of the file.

@fname   - returns the file name without

extension.

@ext     - returns only the extension of the

file.

@path    - returns the full path of the file.

@relpath - returns the relative path of the

file.

@isdir   - returns "TRUE" if a file type is

a directory, and "FALSE" for files.

@fsize   - returns the size of the file in

bytes.

@fdate   - returns the last modified date of the

file.

@ftime   - returns the last modified time of the

file.

To include special characters in the command

line, use the hexadecimal code for the character

in 0xHH format (ex. 0x09 for tab). Internal

CMD.exe commands should be preceded with

"cmd /c".

/D    date          Selects files with a last modified date greater

than or equal to (+), or less than or equal to

(-), the specified date using the

"yyyy-MM-dd" format; or selects files with a

last modified date greater than or equal to (+)

the current date plus "dd" days, or less than or

equal to (-) the current date minus "dd" days. A

valid "dd" number of days can be any number in

the range of 0 - 32768.

"+" is taken as default sign if not specified.

/?                  Displays this help message.

Examples:

FORFILES /?

FORFILES

FORFILES /P C:\WINDOWS /S /M DNS*.*

FORFILES /S /M *.txt /C "cmd /c type @file | more"

FORFILES /P C:\ /S /M *.bat

FORFILES /D -30 /M *.exe

/C "cmd /c echo @path 0x09 was changed 30 days ago"

FORFILES /D 2001-01-01

/C "cmd /c echo @fname is new since Jan 1st 2001"

FORFILES /D +2014-12-15 /C "cmd /c echo @fname is new today"

FORFILES /M *.exe /D +1

FORFILES /S /M *.doc /C "cmd /c echo @fsize"

FORFILES /M *.txt /C "cmd /c if @isdir==FALSE notepad.exe @file"

对应的中文提示信息如下所示:

语法
forfiles [/p Path ] [/m SearchMask ] [/s ] [/c Command ] [/d [{+ | - }] [{MM / DD / YYYY | DD }]]
参数
/p Path
指定Path ,表明要从哪里开始搜索。默认的文件夹是当前工作目录,该目录通过键入句号(.) 指定。
/m SearchMask
按照SearchMask 搜索文件。默认的SearchMask 是*.* 。
/s
指示forfiles 在子目录中搜索。
/c Command
在每个文件上运行指定的Command 。带有空格的命令字符串必须用引号括起来。默认的Command 是"cmd /c echo @file" 。
/d [{+ | - }] [{MM / DD / YYYY | DD }]
选择日期大于或等于(+ )(或者小于或等于(- ))指定日期的文件,其中MM / DD / YYYY 是指定的日期,DD 是当前日期减去DD 天。如果未指定+ 或- ,则使用+ 。DD 的有效范围是0 - 32768。
/?
在命令提示符下显示帮助。

如下所示,由于Windows Server 2000下拷贝过来的forfiles命令的版本是V 1.1,使用参数必须为-p、-c、-m 而且参数后面不能有空格。

如下所示,delete_old_backup.bat 删除2天前的完整备份、事务日志备份、以及维护计划生成的日志文件。

echo  --------------------------------------------- >>delete_old_backup.log 

 

echo Delete the backup log start at %Date% - %time% >>delete_old_backup.log 

 

rem Delete days. 

 

set DaysAgo=2 

 

rem delete old backup log files. 

 

set LogPath=M:\DB_BACKUP\ 

 

forfiles -p%LogPath% -m*.txt -d-%DaysAgo% -c"cmd /c del /q @FILE" >> delete_old_backup.log 

 

echo Delete the backup log Stop at %Date% - %time% >>delete_old_backup.log 

 

echo Delete the full backup start at %Date% - %time% >>delete_old_backup.log 

 

set FullBackupPath=M:\DB_BACKUP\FULL_BACKUP 

 

forfiles -p%FullBackupPath% -m*.bak -d-%DaysAgo% -c"cmd /c del /q @FILE" >> delete_old_backup.log 

 

echo Delete the full backup Stop at %Date% - %time% >>delete_old_backup.log 

 

echo Delete the log backup start at %Date% - %time% >>delete_old_backup.log 

 

set LogBackupPath=M:\DB_BACKUP\LOG_BACKUP 

 

forfiles -p%LogBackupPath% -m*.TRN -d-%DaysAgo% -c"cmd /c del /q @FILE" >> delete_old_backup.log 

 

echo Delete the log backup Stop at %Date% - %time% >>delete_old_backup.log 

 

echo  --------------------------------------------- >>delete_old_backup.log

脚本编写、测试成功后,然后设置Task Schedule,大体步骤如下步骤所示:

Step 1:在控制面板找到任务计划,执行任务计划向导:

Step 2: 点击“浏览”按钮,选择M:\DB_BACKUP\delete_old_backup.bat文件

Step 3:输入任务的名称,以及执行任务的Schedule

Step 4:设置任务执行的时间以及频率

Step 5:输入知晓计划任务的账号以及密码

Step 6:完成任务计划设置。

时间: 2024-08-03 20:25:39

forfiles命令批量删除N天前文件的相关文章

Windows定时删除某天前文件的批处理脚本

备注:1.如XP下因为没有forfiles.exe,拷贝windows2003下的forfiles.exe文件到XP的system32目录即可使用forfiles命令.  2.该文档适用于windows客户端操作系统xp win7/8/10,windows服务器端操作系统 server 2003/2008/2012/2016.3.如有错漏,烦劳指出,谢谢! forfiles.exe及帮助 描述:     选择一个文件(或一组文件)并在那个文件上执行一个命令.这有助于批处理作业. 语法: forf

python脚本删除n天前文件可用于windows,linux并且支持跨平台

脚本如下: #!/usr/local/python/bin/python # -*-coding=utf8 -*- import time import os, sys # 设置删除多少天前的文件 N = 3 #要删除路径 path = r'/tmp/wry/abc' def deletefile(path): for eachfile in os.listdir(path): filename = os.path.join(path, eachfile) if os.path.isfile(f

Linux批量删除指定后缀的文件

刚才遇到一个问题:从本地文件系统上传一个文件夹至HDFS作为Hadoop程序的输入数据,但是程序报错,原因是Ubuntu针对每个.txt文件生成了.txt~备份文件,所以我要把这些备份文件批量删除然后再上传 进入文件夹所在目录,然后执行命令: [email protected]:/usr/local/hadoop/movieinput$ find . -name '*.txt~' -type f -print -exec rm -rf {} \;

用bat批处理程序通过DOS命令行删除所有的空文件夹

用过gothub或者码云的同学都知道,不包含任何文件的空文件夹上传提交时不被允许的.当然你可以在空文件下创建.keep文件(或.gitkeep文件),然后就可以上传了. 但是如果空文件夹比较多,并且我们确实不需要这些空文件了,那本文就学习一种命令行删除所有空文件夹的方法.并封装成.bat批处理程序.通过鼠标右键运行即可. 一,DOS删除命令 1.1,删除文件命令 del 若是想删除文件,输入del 盘符名:\文件名,比如,我想删除一个在F盘的名为123.txt的文件,则输入  del f:\12

linux中批量删除带空格的文件

两种批量删除带空格文件的方式: 第一种用find找到需要删除的文件,-print0指将空格替换成Null;而xargs中的-0参数又将null转换成空格 find . -name "xfsf*" -print0 | xargs -0 rm -rf 第二种用ls查找需要删除的文件,xargs中的-i参数指将每一项的名称替换成{} ls . |grep -i "xxx*" | xargs -i rm -rf {} 单独删除时用\将空格转义 原文地址:https://ww

forfiles命令批处理删除过期文件

命令格式: forfiles.exe /p "D:\备份" /s /m *.zip /d -7 /c "cmd /c del @path" /p:指定目录 /s:递归搜索子目录 /m:搜索"*.zip"文件来删除,默认是"*.*" /d:-7表示7天前的文件 /c:自行命令,后面双引号括起来的是删除文件命令

Linux 按时间批量删除文件(删除N天前文件)

需要根据时间删除这个目录下的文件,/home/lifeccp/dicom/studies,清理掉20天之前的无效数据. 可以使用下面一条命令去完成: find /home/lifeccp/dicom/studies -mtime +21 -name "*.*" -exec rm -Rf {} \; 这个是根据时间删除. 下面简要解释一下,这句shell命令: find /home/lifeccp/dicom/studies -mtime +21 -name "*.*"

使用tar命令批量解压*.tar.gz文件

如何将/usr/local/src 下的所有*.tar.gz 文件批量解压到/usr/local/soft目录下 首先进入到/usr/local/soft ...#cd /usr/local/soft ...#ls /usr/local/usr/*.tar.gz | xargs -n1 tar xzvf

批量删除.pyo后缀的文件

find . -name "*.pyo" -exec rm {} \; 删除以.pyo后缀的所有文件 find . ! -name "*.pyo" -exec rm {} \; 删除除了.pyo之外的所有物文件