清理delphi项目文件 .bat

//把这个批处理文件放到delphi项目工程目录下
//delphi 7
 
pushd %cd%\%1
del /f /q *.dcu
del /f /q *..cfg
del /f /q *..dof
del /f /q *.ddp
del /f /q *.dcu
 
 
 
//delphi xe
 
pushd %cd%\%1
RD /s /q Win32
RD /s /q __history
 
 




posted @ 2012-06-29 17:19  XE2011  阅读(220)  评论(0编辑  收藏  举报