Skip to content

Instantly share code, notes, and snippets.

View berkanuslu's full-sized avatar
💭
(+[](){})();

Berkan Uslu berkanuslu

💭
(+[](){})();
View GitHub Profile
@berkanuslu
berkanuslu / ue4-clean-vs-project-files.bat
Created October 27, 2020 10:29
It cleans Binaries, Build, Intermediate, Saved, and DerivedDataCache folders for your Unreal Engine 4 project and all plugins that you have.
@echo off
echo *********************************************************************************************************************
echo ******************************************** Clean Unreal Engine Project ********************************************
echo *********************************************************************************************************************
echo.
:PROMPT
SET /P AREYOUSURE=Are you sure to delete all Binaries, Build, Intermediate, Saved and DerivedDataCache folders in your project and plugins (y/[N])?
IF /I "%AREYOUSURE%" NEQ "y" GOTO END
echo.
echo Cleaning your project, please wait...