码迷,mamicode.com
首页 > 其他好文 > 详细

[BAT] 通过批处理删除7天前的报告,并删除当前目录下的空文件夹

时间:2015-07-15 19:03:22      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

set reportPath=D:\AutomationReport

cd /d %reportPath%

for /f "tokens=*" %%a in (‘dir /b /ad /s^|sort /r‘) do rd "%%a" 2>nul

forfiles /p %reportPath% /s /m *.xml /d -7 /c "cmd /c del /f @path">nul 2>nul

forfiles /p %reportPath% /s /m *.html /d -7 /c "cmd /c del /f @path">nul 2>nul

forfiles /p %reportPath% /s /m *.pdf /d -7 /c "cmd /c del /f @path">nul 2>nul

forfiles /p %reportPath% /s /m *.png /d -7 /c "cmd /c del /f @path">nul 2>nul

for /f "tokens=*" %%a in (‘dir /b /ad /s^|sort /r‘) do rd "%%a" 2>nul

  

[BAT] 通过批处理删除7天前的报告,并删除当前目录下的空文件夹

标签:

原文地址:http://www.cnblogs.com/MasterMonkInTemple/p/4649009.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!