Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
FFileStatData Struct Reference

#include <GenericPlatformFile.h>

+ Collaboration diagram for FFileStatData:

Public Member Functions

 FFileStatData ()
 
 FFileStatData (FDateTime InCreationTime, FDateTime InAccessTime, FDateTime InModificationTime, const int64 InFileSize, const bool InIsDirectory, const bool InIsReadOnly)
 

Public Attributes

FDateTime CreationTime
 
FDateTime AccessTime
 
FDateTime ModificationTime
 
int64 FileSize
 
bool bIsDirectory: 1
 
bool bIsReadOnly: 1
 
bool bIsValid: 1
 

Detailed Description

Contains the information that's returned from stat'ing a file or directory

Definition at line 157 of file GenericPlatformFile.h.

Constructor & Destructor Documentation

◆ FFileStatData() [1/2]

FFileStatData::FFileStatData ( )
inline

Definition at line 159 of file GenericPlatformFile.h.

+ Here is the call graph for this function:

◆ FFileStatData() [2/2]

FFileStatData::FFileStatData ( FDateTime InCreationTime,
FDateTime InAccessTime,
FDateTime InModificationTime,
const int64 InFileSize,
const bool InIsDirectory,
const bool InIsReadOnly )
inline

Definition at line 170 of file GenericPlatformFile.h.

Member Data Documentation

◆ AccessTime

FDateTime FFileStatData::AccessTime

The time that the file or directory was last accessed, or FDateTime::MinValue if the access time is unknown

Definition at line 185 of file GenericPlatformFile.h.

◆ bIsDirectory

bool FFileStatData::bIsDirectory

True if this data is for a directory, false if it's for a file

Definition at line 194 of file GenericPlatformFile.h.

◆ bIsReadOnly

bool FFileStatData::bIsReadOnly

True if this file is read-only

Definition at line 197 of file GenericPlatformFile.h.

◆ bIsValid

bool FFileStatData::bIsValid

True if file or directory was found, false otherwise. Note that this value being true does not ensure that the other members are filled in with meaningful data, as not all file systems have access to all of this data

Definition at line 200 of file GenericPlatformFile.h.

◆ CreationTime

FDateTime FFileStatData::CreationTime

The time that the file or directory was originally created, or FDateTime::MinValue if the creation time is unknown

Definition at line 182 of file GenericPlatformFile.h.

◆ FileSize

int64 FFileStatData::FileSize

Size of the file (in bytes), or -1 if the file size is unknown

Definition at line 191 of file GenericPlatformFile.h.

◆ ModificationTime

FDateTime FFileStatData::ModificationTime

The time the the file or directory was last modified, or FDateTime::MinValue if the modification time is unknown

Definition at line 188 of file GenericPlatformFile.h.


The documentation for this struct was generated from the following file: