RSS订阅优然探索
你的位置:首页 » 程序语言 » 正文

windows2008 删除文件

选择字号: 超大 标准 发布时间:2013-9-12 19:13:51 | 作者:admin | 0个评论 | 人浏览

@echo off

rem write to log

set filename=deletefile.log

echo -------------------Delete Expired Log Files------------------------- >>%filename%

echo Start >>%filename%

echo (%date% %time%) >>%filename%

echo Delete the expired log files in D:\Users\Administrator\Desktop\2\1, Please wait... >>%filename%

forfiles.exe /p "D:\Users\Administrator\Desktop\SchoolDB" /s /m *.* /d -2 /c "cmd /c del @path"

echo End >>%filename%

echo (%date% %time%) >>%filename%

 

标签:

猜你喜欢

发表评论

必填

选填

选填

必填,不填不让过哦,嘻嘻。

记住我,下次回复时不用重新输入个人信息

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。