Table of Contents

Struct ST_FindFileEntry

Namespace
TwinSharp
Assembly
TwinSharp.dll

The structure ST_FindFileEntry contains information about a file or directory found by the FindFirstFile and FindNextFile functions.

public struct ST_FindFileEntry
Inherited Members

Fields

AlternateFileName

Zero-terminated string with the alternative name of the file or directory in conventional 8.3 format(filename.ext).

public string AlternateFileName

Field Value

string

CreationTime

Creation time of the file.

public DateTime CreationTime

Field Value

DateTime

FileAttributes

File attributes.

public ST_FileAttributes FileAttributes

Field Value

ST_FileAttributes

FileName

Zero-terminated string with the name of the file or directory (type: T_MaxString).

public string FileName

Field Value

string

FileSize

File size in bytes.

public ulong FileSize

Field Value

ulong

LastAccessTime

For a file the structure indicates when it was last accessed (read or write). For a directory the structure indicates when it was created.

public DateTime LastAccessTime

Field Value

DateTime

LastWriteTime

Last write time of the file.

public DateTime LastWriteTime

Field Value

DateTime