VC工程清理
Posted dream-walker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VC工程清理相关的知识,希望对你有一定的参考价值。
@echo off setlocal enabledelayedexpansion for /r . %%a in (ipch) do ( if exist %%a ( echo "delete" %%a rd /s /q "%%a" ) ) for /r . %%a in (*.sdf) do ( if exist %%a ( echo "delete" %%a del "%%a" ) ) for /r %%i in (*.sdf,*.suo,*.ipch,*.pdb,*.ipdb,*.obj,*.iobj,*.ilk,*.log,*.tlog,*.exp,*.pch,*.lastbuildstate,*.manifest,*_manifest.rc,*.resources,*.tmp,*.cdf,*.cache,*.tlb,*.tli,*.xdc,*.rep,*.meta,*.tlh,*.pgd,*.pgc,*.rsp,*.ncb,*.aps,*.idb,*.dep,*.opt,*.plg,*.bsc,*.trg,*.sbr,*.tmp,*.dcu,*.wrn,*.mac) do del /s /f /q "%%i"
以上是关于VC工程清理的主要内容,如果未能解决你的问题,请参考以下文章
VC++获取文件的修改时间,定期清理若干天之前的日志文件(附源码)