码迷,mamicode.com
首页 > 其他好文 > 详细

如何用.bat文件清理工程目录

时间:2014-12-04 10:07:01      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   color   使用   sp   for   strong   on   文件   数据   

用VS2010写的C++项目工程目录里总是有一些不需要的临时编译文件或VS的数据索引文件,这些文件体积具大,比如.sdf文件经常达到70M左右,这给代码备份带来了一些麻烦。

代码备份时,只需要留下一些需要的源文件,而这些文件往往加起来只有不到1M,所以清理工程目录是一个非常有必要做的事情。

以下是一个清理工程目录的.bat文件

@echo Off
del /s /a *.exe *.suo *.ncb *.user *.pdb *.netmodule *.aps *.ilk *.sdf 2>nul
FOR /R . %%d IN (.) DO rd /s /q "%%d\Debug" 2>nul
FOR /R . %%d IN (.) DO rd /s /q "%%d\Release" 2>nul

rem 如果Properties文件夹为空,则删除它
rem FOR /R . %%d in (.) do rd /q "%%d\Properties" 2> nul

我自己经常使用代码如下:

@echo Off del /s /a *.sdf *.ncb 2>nul

FOR /R . %%d IN (.) DO rd /s /q "%%d\Debug" 2>nul

FOR /R . %%d IN (.) DO rd /s /q "%%d\Release" 2>nul

FOR /R . %%d IN (.) DO rd /s /q "%%d\ipch" 2>nul

 




注:

del 命令的/s 参数删除所有子目录中的指定的文件。 FOR /R . %%d IN (.) DO rd /s /q "%%d\Debug" 删除所有文件夹名称为Debug的文件夹 2>nul 不输出错误提示信息

如何用.bat文件清理工程目录

标签:style   color   使用   sp   for   strong   on   文件   数据   

原文地址:http://www.cnblogs.com/hxb316/p/4142008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!