_cleanres.cmd 936 B

12345678910111213141516171819202122
  1. echo off
  2. del *.dsk /s
  3. del *.local /s
  4. del *.identcache /s
  5. del *.res /s
  6. del *.obj /s
  7. del *.dcu /s
  8. echo---------------------------------------------------------
  9. echo delete debug and Platform directories with all subdirectories and files
  10. for /r %1 %%R in (Win32) do if exist "%%R" (rd /s /q "%%R")
  11. for /r %1 %%R in (Win64) do if exist "%%R" (rd /s /q "%%R")
  12. for /r %1 %%R in (Win64x) do if exist "%%R" (rd /s /q "%%R")
  13. for /r %1 %%R in (Debug) do if exist "%%R" (rd /s /q "%%R")
  14. for /r %1 %%R in (Release) do if exist "%%R" (rd /s /q "%%R")
  15. for /r %1 %%R in (Debug_Build) do if exist "%%R" (rd /s /q "%%R")
  16. for /r %1 %%R in (Release_Build) do if exist "%%R" (rd /s /q "%%R")
  17. for /r %1 %%R in (__history) do if exist "%%R" (rd /s /q "%%R")
  18. for /r %1 %%R in (__recovery) do if exist "%%R" (rd /s /q "%%R")
  19. for /r %1 %%R in (__astcache) do if exist "%%R" (rd /s /q "%%R")
  20. for /r %1 %%R in (staticobjs) do if exist "%%R" (rd /s /q "%%R")