Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FPaths
| |
|
| Name |
EGetExtensionDirsFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Core/Public/Misc/Paths.h |
| Include Path |
#include "Misc/Paths.h" |
Syntax
enum EGetExtensionDirsFlags
{
None = 0,
WithBase = (1 << 0),
WithRestricted = (1 << 1),
WithPlatforms = (1 << 2),
CheckPlatformsValid = (1 << 3),
Default = 0xFF,
}
Values
| Name |
Remarks |
| None |
|
| WithBase |
Include the Base directory. |
| WithRestricted |
Include Restricted extension directories. |
| WithPlatforms |
Include Platform extension directories. |
| CheckPlatformsValid |
Use FDataDrivePlatformInfo to determine valid platforms, otherwise just use what's present. |
| Default |
|