Delete Delphi temporary file

来源:互联网 发布:数控车床内孔加工编程 编辑:程序博客网 时间:2024/05/22 12:13

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 ****************************

原创粉丝点击