清理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
 
 




你可能感兴趣的:(Delphi)