Skip to content

Instantly share code, notes, and snippets.

@hmcclungiii
Created March 12, 2014 04:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmcclungiii/9501078 to your computer and use it in GitHub Desktop.
Save hmcclungiii/9501078 to your computer and use it in GitHub Desktop.
Simple little batch file that I use to delete unneeded files that are generated at compile time.
@echo off
FOR /D /R %%X IN (debug,release,bin,obj,ipch) DO RD /S /Q "%%X"
del /S /F /AH *.suo
del /S /F *.user
del /S /F *.ncb
del /S /F *.sbr
del /S /F *.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment