Navigation
API > API/Runtime > API/Runtime/BuildPatchServices > API/Runtime/BuildPatchServices/IBuildManifest
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int64 GetFileSize
(
FStringView Filename |
Returns the size of a particular file in the build | Interfaces/IBuildManifest.h | |
int64 GetFileSize
(
const TArray< FString >& Filenames |
Returns the total size of all files in the array | Interfaces/IBuildManifest.h | |
int64 GetFileSize
(
const TSet< FString >& Filenames |
Returns the total size of all files in the set | Interfaces/IBuildManifest.h |
GetFileSize(FStringView)
Description
Returns the size of a particular file in the build
| Name | GetFileSize |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/BuildPatchServices/Public/Interfaces/IBuildManifest.h |
| Include Path | #include "Interfaces/IBuildManifest.h" |
int64 GetFileSize
(
FStringView Filename
) const
the file size.
Parameters
| Name | Remarks |
|---|---|
| Filename | The file. |
GetFileSize(const TArray< FString > &)
Description
Returns the total size of all files in the array
| Name | GetFileSize |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/BuildPatchServices/Public/Interfaces/IBuildManifest.h |
| Include Path | #include "Interfaces/IBuildManifest.h" |
int64 GetFileSize
(
const TArray < FString > & Filenames
) const
the total size of files in array.
Parameters
| Name | Remarks |
|---|---|
| Filenames | The array of files. |
GetFileSize(const TSet< FString > &)
Description
Returns the total size of all files in the set
| Name | GetFileSize |
| Type | function |
| Header File | /Engine/Source/Runtime/Online/BuildPatchServices/Public/Interfaces/IBuildManifest.h |
| Include Path | #include "Interfaces/IBuildManifest.h" |
int64 GetFileSize
(
const TSet< FString > & Filenames
) const
the total size of files in set.
Parameters
| Name | Remarks |
|---|---|
| Filenames | The set of files. |