批量删除小于一分钟的文件

时间:2011-09-26 23:38:04

标签: windows-7 batch-file

我正在尝试删除不到一分钟的.zip,.jpg和.txt文件。我还没有添加文件类型。稍后会详细介绍。但这似乎并没有删除任何东西。欢迎任何帮助。这是在Windows中。

 @echo off
 cd "c:\*\*"
 setlocal
 call :DateToMinutes %date:~-4% %date:~-10,2% %date:~-7,2% %time:~0,2% %time:~3,2% NowMins
 for /f "delims=" %%a in ('dir * /a-d /b') do call :CheckMins "%%a" "%%~ta"
 goto :EOF
 :CheckMins
 set File=%1
 set TimeStamp=%2
 call :DateToMinutes %timestamp:~7,4% %timestamp:~1,2% %timestamp:~4,2% %timestamp:~12,2% %   timestamp:~15,2%%timestamp:~18,1% FileMins
 set /a MinsOld=%NowMins%-%FileMins%
 if %MinsOld% leq 1 del %file%
 goto :EOF
 :DateToMinutes
 setlocal
 set yy=%1&set mm=%2&set dd=%3&set hh=%4&set nn=%5
 if 1%yy% LSS 200 if 1%yy% LSS 170 (set yy=20%yy%) else (set yy=19%yy%)
 set /a dd=100%dd%%%100,mm=100%mm%%%100
 set /a z=14-mm,z/=12,y=yy+4800-z,m=mm+12*z-3,j=153*m+2
 set /a j=j/5+dd+y*365+y/4-y/100+y/400-2472633
 if 1%hh% LSS 20 set hh=0%hh%
 if /i {%nn:~2,1%} EQU {p} if "%hh%" NEQ "12" set hh=1%hh%&set/a hh-=88
 if /i {%nn:~2,1%} EQU {a} if "%hh%" EQU "12" set hh=00
 if /i {%nn:~2,1%} GEQ {a} set nn=%nn:~0,2%
 set /a hh=100%hh%%%100,nn=100%nn%%%100,j=j*1440+hh*60+nn
 endlocal&set %6=%j%&goto :EOF

1 个答案:

答案 0 :(得分:1)

首先,你的脚本对我不起作用,因为它取决于日期和时间格式,对我来说是:

c:\>echo %date%
Tue 27/09/2011

 c:\>echo %time%
 9:52:31.68

除此之外,通过在顶部临时评论@echo来分析正在发生的事情。

我已编辑您的脚本以处理我的日期格式,我可以看到两个问题:

  1. 第五个参数传递中的杂散空白区域(尽管这可能只是剪切和粘贴问题);和
  2. 您遍历目录的方式。我不会使用cd“c:**”而是将for语句更改为:

    for / f“delims =”%% a in('dir / a-d / b / s c:\')do call:CheckMins“%% a”“%%〜ta”

  3. 正如PA在评论中所说,有更好的答案:How can I check the time stamp creation of a file in a Windows batch script?