您的位置:首页 > 编程语言 > Delphi

Delete Delphi temporary file

2009-12-01 10:24 120 查看
Rem Delete Delphi temporary file
Rem ****************************
@echo Delete Delphi temporary file
@dir/w/s *.~*
@echo 以上为当前目录及子目录临时文件,请按任意键确认删除!
@pause
@for /r . %%a in (.) do @if exist "%%a/*.~*" del "%%a/*.~*"
@echo 删除成功!
@pause
Rem ****************************
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: