Skip to content

Instantly share code, notes, and snippets.

@mu88
Created December 13, 2023 15:58
Show Gist options
  • Save mu88/99a3949550251af3ed44c16191a2c4c7 to your computer and use it in GitHub Desktop.
Save mu88/99a3949550251af3ed44c16191a2c4c7 to your computer and use it in GitHub Desktop.
Recursively delete all bin and obj folders of C# within the current directory
dir .\ -include bin,obj* -recurse | foreach($_) { rd $_.fullname -Recurse -Force}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment