Navigation
API > API/Runtime > API/Runtime/Core
Flags used for argument passing in FPaths and FPathViews functions.
| Name | UE::Paths::EFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/PathTypes.h |
| Include Path | #include "Misc/PathTypes.h" |
Syntax
namespace UE
{
namespace Paths
{
enum EFlags
{
None = 0,
IncludeDot = 1 << 0,
AllowCompoundExtension = 1 << 1,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| IncludeDot | In functions that return extensions, request that the extension include the dot. |
| AllowCompoundExtension | In functions that split extensions out of a path, allow the extension to include multiple dots, after the final directory separator. |