Navigation
API > API/Plugins > API/Plugins/FileSandboxCore
Types of changes the sandbox system may make to a file.
| Name | UE::FileSandboxCore::ESandboxFileChange |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Sandbox/FileSandbox/Source/FileSandboxCore/Public/Types/SandboxFileChange.h |
| Include Path | #include "Types/SandboxFileChange.h" |
Syntax
namespace UE
{
namespace FileSandboxCore
{
enum ESandboxFileChange
{
None,
Added,
Removed,
Edited,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | No changes were made to the file. |
| Added | The file was added. |
| Removed | The file was removed. |
| Edited | TODO UE-356393: Add support for moved files & moved-and-edited files. |