您的位置:首页 > 其它

批处理删除vc临时文件

2012-08-24 12:44 351 查看
@echo on

echo 删除VC编译产生的临时文件

echo 删除开始...

for /r . %%c in (.) do @if exist "%%c\Debug" rd /S /Q "%%c\Debug"

for /r . %%c in (.) do @if exist "%%c\Release" rd /S /Q "%%c\Release"

for /r . %%c in (*.opt *.dsw *. *.bsc *.aps *.clw *.ncb *.plg *.positions *.WW *.user) do del "%%c"

for /r . %%c in ("*VA_C__Documents and Settings_Administrator_Local Settings_Application Data_VisualAssist_vc6_history_") do del "%%c"

echo 删除完毕...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: