Choose your operating system:
Windows
macOS
Linux
| IPlatformFile
|
Module |
|
Header |
/Engine/Source/Runtime/Core/Public/HAL/IPlatformFileLogWrapper.h |
Include |
#include "HAL/IPlatformFileLogWrapper.h" |
class FLoggedPlatformFile : public IPlatformFile
Name | Description | |
---|---|---|
|
FLoggedPlatformFile() |
Name | Description | ||
---|---|---|---|
|
const TCHAR ... |
GetTypeName() |
|
|
HandleDumpCommand ( |
||
|
OnHandleClosed ( |
||
|
OnHandleOpen ( |
Name | Description | ||
---|---|---|---|
|
CopyFile ( |
Copy a file. This will fail if the destination file already exists. |
|
|
CreateDirectory ( |
Create a directory and return true if the directory was created or already existed. |
|
|
DeleteDirectory ( |
Delete a directory and return true if the directory was deleted or otherwise does not exist. |
|
|
DeleteDirectoryRecursively ( |
Delete all files and subdirectories in a directory, then delete the directory itself |
|
|
DeleteFile ( |
Delete a file and return true if the file exists. Will not delete read only files. |
|
|
DirectoryExists ( |
Return true if the directory exists. |
|
|
FileExists ( |
Return true if the file exists. |
|
|
FileSize ( |
Return the size of the file, or -1 if it doesn't exist. |
|
|
GetAccessTimeStamp ( |
Return the last access time of a file. |
|
|
GetFilenameOnDisk ( |
For case insensitive filesystems, returns the full path of the file with the same case as in the filesystem |
|
|
IPlatformFil... |
GetLowerLevel() |
Gets the platform file wrapped by this file. |
|
const TCHAR ... |
GetName() |
Gets this platform file type name. |
|
FFileStatDat... |
GetStatData ( |
Return the stat data for the given file or directory. |
|
GetTimeStamp ( |
Return the modification time of a file. |
|
|
Initialize ( |
Initializes platform file. |
|
|
IsReadOnly ( |
Return true if the file is read only. |
|
|
IterateDirectory ( |
Call the Visit function of the visitor once for each file or directory in a single directory. |
|
|
IterateDirectoryRecursively ( |
Call the Visit function of the visitor once for each file or directory in a directory tree. |
|
|
IterateDirectoryStat ( |
Call the Visit function of the visitor once for each file or directory in a single directory. |
|
|
IterateDirectoryStatRecursively ( |
Call the Visit function of the visitor once for each file or directory in a directory tree. |
|
|
MoveFile |
Attempt to move a file. Return true if successful. Will not overwrite existing files. |
|
|
IAsyncReadFi... |
OpenAsyncRead ( |
Open a file for async reading. This call does not hit the disk or block. |
|
IMappedFileH... |
OpenMapped ( |
Open a file for async reading. This call does hit the disk; it is synchronous open. |
|
IFileHandle ... |
OpenRead |
Attempt to open a file for reading. |
|
IFileHandle ... |
OpenWrite |
Attempt to open a file for writing. |
|
SetAsyncMinimumPriority ( |
Controls if the pak precacher should process precache requests. |
|
|
SetLowerLevel ( |
Sets the platform file wrapped by this file. |
|
|
SetReadOnly |
Attempt to change the read only status of a file. Return true if successful. |
|
|
SetTimeStamp |
Sets the modification time of a file |
|
|
ShouldBeUsed ( |
Checks if this platform file should be used even though it was not asked to be. |
Name |
Description |
|
---|---|---|
|
FLogStatVisitor |
|
|
FLogVisitor |