WIN32_FIND_DATA Fields |
The WIN32_FIND_DATA type exposes the following members.
Name | Description | |
---|---|---|
cAlternateFileName |
An alternative name for the file. This name is in the classic 8.3 file name format.
| |
cFileName |
The name of the file.
| |
dwReserved0 |
If the dwFileAttributes member includes the FILE_ATTRIBUTE_REPARSE_POINT attribute, this member specifies the reparse point tag. Otherwise, this value is undefined and should not be used.
| |
dwReserved1 |
Reserved for future use.
| |
fileAttributes |
The file attributes of a file.
| |
fileSizeHigh |
The high-order DWORD value of the file size, in bytes.
| |
fileSizeLow |
The low-order DWORD value of the file size, in bytes.
| |
ftCreationTimeHigh |
Specifies when a file or directory was created.
| |
ftCreationTimeLow |
Specifies when a file or directory was created.
| |
ftLastAccessTimeHigh |
For a file, the structure specifies when the file was last read from, written to, or for executable files, run.
For a directory, the structure specifies when the directory is created.If the underlying file system does not support last access time, this member is zero.
| |
ftLastAccessTimeLow |
For a file, the structure specifies when the file was last read from, written to, or for executable files, run.
For a directory, the structure specifies when the directory is created.If the underlying file system does not support last access time, this member is zero.
| |
ftLastWriteTimeHigh |
For a file, the structure specifies when the file was last written to, truncated, or overwritten, for example, when WriteFile or SetEndOfFile are used. The date and time are not updated when file attributes or security descriptors are changed.
For a directory, the structure specifies when the directory is created.If the underlying file system does not support last write time, this member is zero.
| |
ftLastWriteTimeLow |
For a file, the structure specifies when the file was last written to, truncated, or overwritten, for example, when WriteFile or SetEndOfFile are used. The date and time are not updated when file attributes or security descriptors are changed.
For a directory, the structure specifies when the directory is created.If the underlying file system does not support last write time, this member is zero.
|