Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FPathViews
Description
Appends each suffix argument to the path in the builder and ensures that there is a separator between them.
Examples: ("", "") -> "" ("A", "") -> "A/" ("", "B") -> "B" ("/", "B") -> "/B" ("A", "B") -> "A/B" ("A/", "B") -> "A/B" ("A\", "B") -> "A\B" ("A/B", "C/D") -> "A/B/C/D" ("A/", "B", "C/", "D") -> "A/B/C/D"
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/PathViews.h |
| Include Path | #include "Misc/PathViews.h" |
template<typename CharType, typename... ArgTypes>
static void Append
(
TStringBuilderBase < CharType > & Builder,
ArgTypes &&... Args
)
Parameters
| Name | Remarks |
|---|---|
| Builder | A possibly-empty path that may end in a separator. |
| Args | Arguments that can write to a string builder and do not start with a separator. |