Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/GenericPlatform
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/GenericPlatform/GenericPlatformFile.h |
| Include | #include "GenericPlatform/GenericPlatformFile.h" |
Syntax
struct FFileStatData
Remarks
Contains the information that's returned from stat'ing a file or directory
Variables
| Type | Name | Description | |
|---|---|---|---|
| FDateTime | AccessTime | The time that the file or directory was last accessed, or FDateTime::MinValue if the access time is unknown | |
| bool: 1 | bIsDirectory | True if this data is for a directory, false if it's for a file | |
| bool: 1 | bIsReadOnly | True if this file is read-only | |
| bool: 1 | bIsValid | True if file or directory was found, false otherwise. | |
| FDateTime | CreationTime | The time that the file or directory was originally created, or FDateTime::MinValue if the creation time is unknown | |
| int64 | FileSize | Size of the file (in bytes), or -1 if the file size is unknown | |
| FDateTime | ModificationTime | The time the the file or directory was last modified, or FDateTime::MinValue if the modification time is unknown |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FFileStatData
(
FDateTime InCreationTime, |