Skip to content

Instantly share code, notes, and snippets.

@SteGriff
Created November 4, 2019 12:11
Show Gist options
  • Select an option

  • Save SteGriff/ab65a2bde7d9140c4452e64e0f3b73f3 to your computer and use it in GitHub Desktop.

Select an option

Save SteGriff/ab65a2bde7d9140c4452e64e0f3b73f3 to your computer and use it in GitHub Desktop.
For Visual Studio - recursively delete all bin and obj folders in subdirectories
Get-ChildItem -Include bin,obj -Recurse | Remove-Item -Recurse -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment