Navigation
API > API/Editor > API/Editor/ContentBrowserData > API/Editor/ContentBrowserData/UContentBrowserDataSource
Description
Enumerate the items (folders and/or files) that exist at the given content browser 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/ContentBrowserDataSource.h |
| Include Path | #include "ContentBrowserDataSource.h" |
| Source | /Engine/Source/Editor/ContentBrowserData/Private/ContentBrowserDataSource.cpp |
virtual bool EnumerateItemsAtPaths
(
const TArrayView < FContentBrowserItemPath > InPaths,
const EContentBrowserItemTypeFilter InItemTypeFilter,
TFunctionRef < bool &&)> InCallback
)
Parameters
| Name | Remarks |
|---|---|
| InPaths | The paths to search for |
| InItemTypeFilter | The types of items we want to find. |
| InCallback | The function to invoke for each matching item (return true to continue enumeration). |