標籤:
複製儲存到任意檔案名稱.bat,放置在Visual Studio Solution目錄下。
當Visual Studio Solution目錄過於龐大或打算拷貝移動Visual Studio Solution時,雙擊開啟bat檔案即可。
本bat檔案僅刪除Visual Studio每次運行自動建立的臨時快取檔案,不會刪除源檔案,請放心使用。
1 ::請勿輕易修改此檔案,以避免不可預知的錯誤 By [email protected] 2 3 @echo off 4 color 0A 5 title Clean Visual Studio Solution Temporary File Build20160418 6 7 if not exist *.sln1 (color 0C & echo 目前的目錄不存在Visual Studio解決方案... & ping 0 /n 3 >nul 2>nul & exit) 8 9 echo 清理Visual Studio解決方案臨時檔案... & echo. & echo 按任意鍵繼續... & pause > nul10 11 attrib -a -r -s -h *.* >nul 2>nul12 for /d %%i in (*) do (attrib -a -r -s -h %%i\*.* >nul 2>nul)13 14 del /s /q /f *.sdf >nul 2>nul15 del /s /q /f *.opendb >nul 2>nul16 del /s /q /f *.suo >nul 2>nul17 del /s /q /f *.aps >nul 2>nul18 del /s /q /f *.exe >nul 2>nul19 del /s /q /f *.ilk >nul 2>nul20 del /s /q /f *.pdb >nul 2>nul21 del /s /q /f *.iobj >nul 2>nul22 del /s /q /f *.ipdb >nul 2>nul23 del /s /q /f *.log >nul 2>nul24 del /s /q /f *.obj >nul 2>nul25 del /s /q /f *.pch >nul 2>nul26 del /s /q /f *.res >nul 2>nul27 del /s /q /f *.idb >nul 2>nul28 del /s /q /f *.lastbuildstate >nul 2>nul29 del /s /q /f *.tlog >nul 2>nul30 31 rd /s /q .vs >nul 2>nul32 rd /s /q Debug >nul 2>nul33 rd /s /q Release >nul 2>nul34 rd /s /q ipch >nul 2>nul35 rd /s /q x64 >nul 2>nul36 37 for /d %%i in (*) do (38 rd /s /q %%i\Debug >nul 2>nul39 rd /s /q %%i\Release >nul 2>nul40 rd /s /q %%i\x64 >nul 2>nul41 )42 43 cls & echo 清理完成... & ping 0 /n 2 >nul 2>nul
View Code
清理Visual Studio解決方案臨時檔案:Clean Visual Studio Solution Temporary File Build20160418