Navigation
API > API/Runtime > API/Runtime/BuildPatchServices > API/Runtime/BuildPatchServices/IBuildManifest
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void GetRemovableFiles
(
const IBuildManifestRef& OldManifest, |
Gets a list of files that were installed with the Old Manifest, but no longer required by this Manifest. | Interfaces/IBuildManifest.h | |
void GetRemovableFiles
(
const TCHAR* InstallPath, |
Gets a list of files that are installed in InstallPath, but no longer required by this Manifest. | Interfaces/IBuildManifest.h |
GetRemovableFiles(const IBuildManifestRef &, TArray< FString > &)
Description
Gets a list of files that were installed with the Old Manifest, but no longer required by this Manifest.
| Name | GetRemovableFiles |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/BuildPatchServices/Public/Interfaces/IBuildManifest.h |
| Include Path | #include "Interfaces/IBuildManifest.h" |
void GetRemovableFiles
(
const IBuildManifestRef & OldManifest,
TArray < FString > & RemovableFiles
) const
Parameters
| Name | Remarks |
|---|---|
| OldManifest | IN The Build Manifest that is currently installed. |
| RemovableFiles | OUT A list to receive the files that may be removed. |
GetRemovableFiles(const TCHAR *, TArray< FString > &)
Description
Gets a list of files that are installed in InstallPath, but no longer required by this Manifest.
| Name | GetRemovableFiles |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/BuildPatchServices/Public/Interfaces/IBuildManifest.h |
| Include Path | #include "Interfaces/IBuildManifest.h" |
void GetRemovableFiles
(
const TCHAR * InstallPath,
TArray < FString > & RemovableFiles
) const
Parameters
| Name | Remarks |
|---|---|
| InstallPath | IN The path to the currently installed files. |
| RemovableFiles | OUT A list to receive the files that may be removed. |