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 ******************************************** 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... |