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