Navigation
API > API/Developer > API/Developer/SourceControl > API/Developer/SourceControl/USourceControlHelpers
References
| Module | SourceControl |
| Header | /Engine/Source/Developer/SourceControl/Public/SourceControlHelpers.h |
| Include | #include "SourceControlHelpers.h" |
| Source | /Engine/Source/Developer/SourceControl/Private/SourceControlHelpers.cpp |
static bool GetFilesInDepotAtPaths
(
const TArray< FString > & Paths,
TArray< FString > & OutFilesList,
bool bIncludeDeleted,
bool bSilent,
bool bIsFileRegexSearch
)
Remarks
Use currently set source control provider to query the list of files in the depot under a list of paths.
Blocks until action is complete. Success or failure of the operation
Parameters
| Name | Description |
|---|---|
| Paths | The paths which we want to query the list of files from. |
| OutFilesList | An array containing the list of files under the queried path. |
| bIncludeDeleted | Include files that have been deleted from the depot. |
| bSilent | If false (default) then write out any error info to the Log. Any error text can be retrieved by LastErrorMsg() regardless. |
| bIsFileRegexSearch | If false, it is a folder search. If true, it is a file regex search |