-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCleanup.bat
More file actions
13 lines (13 loc) · 831 Bytes
/
Cleanup.bat
File metadata and controls
13 lines (13 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
@echo off
//del /q "Builds\*.exe" 2>nul:
//del /q "Builds\*.txt" 2>nul:
//rd /s /q "VS2010\ipch\" 2>nul:
//for /r %%i in (*.aps) do del /q "%%i" && echo Cleaning %%i
//for /r %%i in (*.ncb) do del /q "%%i" && echo Cleaning %%i
//for /r %%i in (*.sdf) do del /q "%%i" && echo Cleaning %%i
for /r %%i in (*.user) do del /q "%%i" && echo Cleaning %%i
for /d /r %%i in (*.*) do if exist "%%i\Release Win32\" rd /s /q "%%i\Release Win32\" && echo Cleaning %%i\Release Win32\
for /d /r %%i in (*.*) do if exist "%%i\Release x64\" rd /s /q "%%i\Release x64\" && echo Cleaning %%i\Release x64\
for /d /r %%i in (*.*) do if exist "%%i\Debug Win32\" rd /s /q "%%i\Debug Win32\" && echo Cleaning %%i\Debug Win32\
for /d /r %%i in (*.*) do if exist "%%i\Debug x64\" rd /s /q "%%i\Debug x64\" && echo Cleaning %%i\Debug x64\
pause