Last active
March 15, 2017 00:39
-
-
Save sgaulding/aa11a9618843b9ebbc83 to your computer and use it in GitHub Desktop.
Clean up Visual Studio directories
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 -inc bin,obj -rec | Remove-Item -rec -force | |
Get-ChildItem -inc bin,obj -rec | ? { $_.PsIsContainer -and $_.FullName -notmatch 'node_modules' } | ? { Remove-Item $_.FullName -rec -force } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment