Created
January 5, 2023 05:37
-
-
Save LuviKunG/e46e411a98fda0fbd026a9279f43e20d to your computer and use it in GitHub Desktop.
This is Windows batch file that will clean up unimportant files in the Unity project's folder.
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 Deleting all files in the 'Library' folder. | |
del /s /q /f "Library/" | |
rd /s /q "Library/" | |
echo Deleting all files in the 'Logs' folder. | |
del /s /q /f "Logs/" | |
rd /s /q "Logs/" | |
echo Deleting all files in the 'obj' folder. | |
del /s /q /f "obj/" | |
rd /s /q "obj/" | |
echo Deleting all C# Projects. | |
del *.csproj | |
echo Deleting all Visual Studio Solutions. | |
del *.sln | |
echo Deleting all junk files. | |
del /s /q /f .DS_STORE | |
echo Done. | |
pause |
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 Deleting all C# Projects. | |
del *.csproj | |
echo Deleting all Visual Studio Solutions. | |
del *.sln | |
echo Deleting all junk files. | |
del /s /q /f .DS_STORE | |
echo Done. | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment