Navigation
API > API/Plugins > API/Plugins/FileSandboxCore
Explains why a sandbox can or cannot be renamed.
| Name | UE::FileSandboxCore::ESandboxRenameSuitability |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Sandbox/FileSandbox/Source/FileSandboxCore/Public/Utils/SandboxDirectoryUtils.h |
| Include Path | #include "Utils/SandboxDirectoryUtils.h" |
Syntax
namespace UE
{
namespace FileSandboxCore
{
enum ESandboxRenameSuitability
{
Allowed,
SandboxDoesNotExist,
ActiveSandbox,
NameIsSame,
InvalidDirectory,
EmptyName,
}
}
}
Values
| Name | Remarks |
|---|---|
| Allowed | |
| SandboxDoesNotExist | The sandbox does not exist |
| ActiveSandbox | You cannot rename an active sandbox |
| NameIsSame | The name is not different from the current name. |
| InvalidDirectory | Sandbox cannot have this name |
| EmptyName | Name cannot be empty |