| 12345678910111213141516171819202122 |
- echo off
- del *.dsk /s
- del *.local /s
- del *.identcache /s
- del *.res /s
- del *.obj /s
- del *.dcu /s
- echo---------------------------------------------------------
- echo delete debug and Platform directories with all subdirectories and files
- for /r %1 %%R in (Win32) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (Win64) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (Win64x) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (Debug) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (Release) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (Debug_Build) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (Release_Build) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (__history) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (__recovery) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (__astcache) do if exist "%%R" (rd /s /q "%%R")
- for /r %1 %%R in (staticobjs) do if exist "%%R" (rd /s /q "%%R")
|