Navigation
API > API/Developer > API/Developer/DesktopPlatform > API/Developer/DesktopPlatform/IDesktopPlatform
Description
Finds all the projects which the engine (given by an identifier) has a record of. This includes all the recently opened projects, projects in the default project directory, and so on.
| Name | EnumerateProjectsKnownByEngine |
| Type | function |
| Header File | /Engine/Source/Developer/DesktopPlatform/Public/IDesktopPlatform.h |
| Include Path | #include "IDesktopPlatform.h" |
bool EnumerateProjectsKnownByEngine
(
const FString & Identifier,
bool bIncludeNativeProjects,
TArray< FString > & OutProjectFileNames
)
True if the enumeration was successful, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Identifier | Identifier for the engine |
| bIncludeNativeProjects | Flag indicating whether to include native projects. |
| OutProjectFileNames | Array to receive the paths of the projects known by the engine. |