Navigation
API > API/Editor > API/Editor/ContentBrowserData > API/Editor/ContentBrowserData/UContentBrowserDataSubsystem
Description
Enumerate the items (files) that exist at the given paths.
Multiple items may have the same virtual path if they are different types, or come from different data sources.
| Name | EnumerateItemsAtPaths |
| Type | function |
| Header File | /Engine/Source/Editor/ContentBrowserData/Public/ContentBrowserDataSubsystem.h |
| Include Path | #include "ContentBrowserDataSubsystem.h" |
| Source | /Engine/Source/Editor/ContentBrowserData/Private/ContentBrowserDataSubsystem.cpp |
bool EnumerateItemsAtPaths
(
const TArrayView < struct FContentBrowserItemPath > InItemPaths,
const EContentBrowserItemTypeFilter InItemTypeFilter,
TFunctionRef < bool &&)> InCallback
) const
Parameters
| Name | Remarks |
|---|---|
| InItemPaths | The paths to enumerate |
| InItemTypeFilter | The types of items we want to find. |
| InCallback | The function to invoke for each matching item (return true to continue enumeration). |