Created
November 4, 2019 12:11
-
-
Save SteGriff/ab65a2bde7d9140c4452e64e0f3b73f3 to your computer and use it in GitHub Desktop.
For Visual Studio - recursively delete all bin and obj folders in subdirectories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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