Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FPackageName
Description
Looks for the first allocated MountPoint with the given RootLongPackageName. If multiple are allocated, only returns the one with the highest override priority (the one that was added last). A discovered MountPoint might or might not be mounted, call MountPoint->IsMounted() to check for mounted.
| Name | FindMountPointByRootPackageName |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/Misc/PackageName.h |
| Include Path | #include "Misc/PackageName.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/Misc/PackageName.cpp |
static TRefCountPtr < UE::PackageName::IMountPoint > FindMountPointByRootPackageName
(
FStringView RootLongPackageName
)
RefCountPtr to the IMountPoint, or nullptr if not yet allocated.
Parameters
| Name | Remarks |
|---|---|
| RootLongPackageName | LongPackageName location for the root of the MountPoint, Examples: /Engine/, /PluginName/ |