Created
December 24, 2022 02:54
-
-
Save disouzam/cde3842641e46e9e4778b5c39871e160 to your computer and use it in GitHub Desktop.
Remove bin and obj folders using batch script
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 | |
@echo ====================================================== | |
@echo {mainProjectName} - Remove bin and obj folders | |
@echo ====================================================== | |
@echo off | |
@echo. | |
@echo. | |
cd ..\ | |
md log | |
cd ..\ | |
cd {mainProjectName} | |
dir /b /s > ..\.vscode\log\{mainProjectName}-Files-0-before.txt | |
@echo on | |
rd /S /Q bin | |
rd /S /Q obj | |
@echo off | |
dir /b /s > ..\.vscode\log\{mainProjectName}-Files-1-after.txt | |
cd ..\ | |
@REM pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment