19 lines
360 B
Batchfile
19 lines
360 B
Batchfile
@echo off
|
|
|
|
set PROJECTDIR=%~dp0..
|
|
cd %PROJECTDIR%
|
|
|
|
for /r %%i in (vcproject,debug,release,ipch,.vs,tmp) do (
|
|
if exist %%i (
|
|
rd /s /q %%i
|
|
)
|
|
)
|
|
|
|
for /r %%i in (*.sln,*.vcxproj,*.vcxproj.filters,*.pdb,*.sdf,*.ncb,*.suo,*.exp,*.user,*.aps,*.idb,*.dep,*.opt,*.plg,*.bsc,*.ilk,*.trg) do (
|
|
if exist %%i (
|
|
del /s /f /q %%i
|
|
)
|
|
)
|
|
|
|
pause
|