使用创建日期删除超过1天的文件的批处理脚本

时间:2014-03-24 08:49:00

标签: batch-file

用于删除超过1天的文件的批处理脚本。

D 表示:运行日期正在通过命令提示符。

如何在D中减去一天。

我想在相同的代码中删除一天的旧文件,文件名以 olddayfile_20140323.txt 开头。

使用以下代码删除D(D:当天文件)文件。

@echo on

rem %1 %2 %3 - YYYY MM DD

set folder1="C:\FX\in"

set folder2="C:\FX\out"

set D=%1%2%3%

cd /d %folder2%

del test1_%1%2%3*

del test2_%1%2%3*

del test3_%1%2%3*

请注意下面的脚本正在运行,但它只能处理修改后的日期文件。

forfiles.exe /p C:\FX\out /s /m olddayfile_* /d -1 /c "cmd /c del @file"

请建议我是批处理脚本的新手。

1 个答案:

答案 0 :(得分:0)

尝试使用以下代码删除名称比当前日期少一天的文件(格式为YYYYMMDD)

 @echo off
 setlocal

 Call :GetDateTime Year Month Day
 set A=%Year%%Month%%Day%

 Call :SubtractDate %Year% %Month% %Day% -1 Ret

 set b=%Ret%
 @echo ###start Deleting
 :: variables
 Set source=G:\


 echo ### Deleting up old backup...
 DEL /Q /S "%source%\%B%*.*"


 :SubtractDate Year Month Day <+/-Days> Ret
 ::Adapted from DosTips Functions::
 setlocal & set a=%4
 set "yy=%~1"&set "mm=%~2"&set "dd=%~3"
 set /a "yy=10000%yy% %%10000,mm=100%mm% %% 100,dd=100%dd% %% 100"
 if %yy% LSS 100 set /a yy+=2000 &rem Adds 2000 to two digit years
 set /a JD=dd-32075+1461*(yy+4800+(mm-14)/12)/4+367*(mm-2-(mm-14)/12*12)/12-3*((yy+4900+(mm-14)/12)/100)/4
 if %a:~0,1% equ + (set /a JD=%JD%+%a:~1%) else set /a JD=%JD%-%a:~1%
 set /a L= %JD%+68569,     N= 4*L/146097, L= L-(146097*N+3)/4, I= 4000*(L+1)/1461001
 set /a L= L-1461*I/4+31, J= 80*L/2447,  K= L-2447*J/80,      L= J/11
 set /a J= J+2-12*L,      I= 100*(N-49)+I+L
 set /a YYYY= I, MM=100+J, DD=100+K
 set MM=%MM:~-2% & set DD=%DD:~-2%
 set ret=%YYYY: =%%MM: =%%DD: =%
 endlocal & set %~5=%ret%
 exit /b

 :GetDateTime Year Month Day Hour Minute Second
 @echo off & setlocal
 for /f "tokens=2 delims==" %%a in ('wmic OS Get localdatetime /value') do set "dt=%%a"
 set "YY=%dt:~2,2%" & set "YYYY=%dt:~0,4%" & set "MM=%dt:~4,2%" & set "DD=%dt:~6,2%"
 set "HH=%dt:~8,2%" & set "Min=%dt:~10,2%" & set "Sec=%dt:~12,2%"
 ( ENDLOCAL
    IF "%~1" NEQ "" set "%~1=%YYYY%" 
    IF "%~2" NEQ "" set "%~2=%MM%" 
    IF "%~3" NEQ "" set "%~3=%DD%"
    IF "%~4" NEQ "" set "%~4=%HH%" 
    IF "%~5" NEQ "" set "%~5=%Min%"
    IF "%~6" NEQ "" set "%~6=%Sec%"
 )
 exit /b