Created
July 30, 2013 16:23
-
-
Save PatrickMcDonald/6114483 to your computer and use it in GitHub Desktop.
Clean all vbw, exp and lib files recursively
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
@echo off | |
attrib -r *.lib /s > nul 2>&1 | |
attrib -r *.exp /s > nul 2>&1 | |
attrib -r *.vbw /s > nul 2>&1 | |
del *.lib /s 2>nul | |
del *.exp /s 2>nul | |
del *.vbw /s 2>nul |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment