Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FLinkerTables
Description
Return the path name of the UObject represented by the specified export. (can be used with StaticFindObject)
Return the path name of the UObject represented by the specified export. (can be used with StaticFindObject)
| Name | GetExportPathName |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/Linker.h |
| Include Path | #include "UObject/Linker.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/Linker.cpp |
FString GetExportPathName
(
const FString & RootPackagePath,
int32 ExportIndex,
bool bResolveForcedExports
)
the path name of the UObject represented by the resource at ExportIndex
Parameters
| Name | Remarks |
|---|---|
| RootPackagePath | Name of the root package for this export |
| ExportIndex | index into the ExportMap for the resource to get the name for |
| bResolveForcedExports | if true, the package name part of the return value will be the export's original package, not the name of the package it's currently contained within. |
| RootPackagePath | Name of the root package for this export |
| ExportIndex | index into the ExportMap for the resource to get the name for |
| bResolveForcedExports | if true, the package name part of the return value will be the export's original package, not the name of the package it's currently contained within. |