Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FFileHelper
Description
Generates the next unique bitmap filename with a specified extension
Generates the next unique bitmap filename with a specified extension
| Name | GenerateNextBitmapFilename |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/FileHelper.h |
| Include Path | #include "Misc/FileHelper.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/FileHelper.cpp |
static bool GenerateNextBitmapFilename
(
const FString & Pattern,
const FString & Extension,
FString & OutFilename,
IFileManager * FileManager
)
true if success
Parameters
| Name | Remarks |
|---|---|
| Pattern | Filename with path, but without extension. |
| Extension | File extension to be appended |
| OutFilename | Reference to an FString where the newly generated filename will be placed |
| FileManager | Reference to a IFileManager (or the global instance by default) |
| Pattern | Filename with path, but without extension. @oaran Extension File extension to be appended |
| OutFilename | Reference to an FString where the newly generated filename will be placed |
| FileManager | Reference to a IFileManager (or the global instance by default) |