Advertisement
Developer_Bastian

Clean Unreal Engine project and plugin directory

Jan 28th, 2024 (edited)
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Winbatch 0.46 KB | Gaming | 0 0
  1. @echo off
  2.  
  3. rem enter project directory
  4. d:
  5. cd\
  6. cd "YOUR PROJECT FOLDER HERE"
  7.  
  8. rem remove .vs, Binaries, DerivedDataCache, Intermediate, Saved, , VS Solution file
  9. rmdir /s /q .vs
  10. rmdir /s /q Binaries
  11. rmdir /s /q DerivedDataCache
  12. rmdir /s /q Intermediate
  13. rmdir /s /q Saved
  14. del *.sln
  15.  
  16. rem enter plugin directory and remove Binaries and Intermediate
  17. cd "YOUR PROJECT FOLDER HERE"\Plugins\"YOUR PLUGIN FOLDER HERE"
  18. rmdir /s /q Binaries
  19. rmdir /s /q Intermediate
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement