Skip to content

Instantly share code, notes, and snippets.

@woeterman94
Created November 13, 2025 09:37
Show Gist options
  • Select an option

  • Save woeterman94/682ceb3995b525227c83d19c8819bcb1 to your computer and use it in GitHub Desktop.

Select an option

Save woeterman94/682ceb3995b525227c83d19c8819bcb1 to your computer and use it in GitHub Desktop.
Delete bin and obj folders
@echo off
for /d /r . %%d in (bin,obj) do @if exist "%%d" rd /s/q "%%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment