Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject > API/Runtime/CoreUObject/UObject/IPackageResourceManager > API/Runtime/CoreUObject/UObject/IPackageResourceManager/FindPackagesRecursive
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/UObject/PackageResourceManager.h |
| Include | #include "UObject/PackageResourceManager.h" |
| Source | /Engine/Source/Runtime/CoreUObject/Private/UObject/PackageResourceManager.cpp |
void FindPackagesRecursive
&40;
TArray< FPackagePath > & OutPackages,
FStringView PackageMount,
FStringView FileMount,
FStringView RootRelPath,
FStringView BasenameWildcard
&41;
Remarks
Search the given subdirectory of a package mount for all packages with the given package basename in the package repository
Parameters
| Name | Description |
|---|---|
| OutPackages | The list of packages found |
| PackageMount | The package name of the mount point to look under |
| FileMount | The local file path of the mount point to look under, must be the local file path that corresponds to PackageMount |
| RootRelPath | A relative path from PackageMount that specifies the subdirectory of the mount point to use as the root of the search |
| BasenameWildcard | The basenamewithoutpath to look for BasenameWildcard can not include path or extension; / and . are invalid characters BasenameWildcard can include *?-type wildcards (FString::MatchesWildcard) |