Skip to content

Instantly share code, notes, and snippets.

@disouzam
Created December 24, 2022 02:54
Show Gist options
  • Save disouzam/cde3842641e46e9e4778b5c39871e160 to your computer and use it in GitHub Desktop.
Save disouzam/cde3842641e46e9e4778b5c39871e160 to your computer and use it in GitHub Desktop.
Remove bin and obj folders using batch script
@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