Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/IPlatformFile
Flags to be used when opening a file for reading via IPlatformFile::OpenRead
| Name | EOpenReadFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformFile.h |
| Include Path | #include "GenericPlatform/GenericPlatformFile.h" |
Syntax
enum EOpenReadFlags
{
None = 0,
AllowWrite = 1 << 0,
AllowDelete = 1 << 1,
NoBuffering = 1 << 2,
}
Values
| Name | Remarks |
|---|---|
| None | |
| AllowWrite | Allow other handles/processes to write to this file. |
| AllowDelete | Allow the file to be deleted or renamed while keeping this handle valid for reading. |
| NoBuffering | Disables buffering performed by the platform operating system, if any. |