Created
March 22, 2022 20:37
-
-
Save frankwwu/669ddbfc68f5f0c80da509aa99684f0e to your computer and use it in GitHub Desktop.
Delete all obj and bin folders on Windows.
This file contains 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
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