FILEFINDBUF: Difference between revisions
Appearance
New |
|||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
Find file buffer data structure. | |||
=== Type === | |||
[[FDATE]] fdateCreation | |||
=== Type === | [[FTIME]] ftimeCreation | ||
FDATE fdateLastAccess | |||
[[ | FTIME ftimeLastAccess | ||
[[ | FDATE fdateLastWrite | ||
FTIME ftimeLastWrite | |||
[[ULONG]] cbFile | |||
ULONG cbFileAlloc | |||
[[USHORT]] attrFile | |||
[[ | [[UCHAR]] cchName | ||
[[CHAR]] achName[ [[CCHMAXPATHCOMP]] ] | |||
[[ | |||
[[ | |||
[[ | |||
==== C Declaration Method ==== | ==== C Declaration Method ==== | ||
typedef struct | typedef struct | ||
=== Fields === | === Fields === | ||
;fdateCreation:Date of file creation. | |||
;ftimeCreation:Time of file creation. | |||
;fdateLastAccess:Date of last access. | |||
;ftimeLastAccess:Time of last access. | |||
;fdateLastWrite:Date of last write. | |||
;cbFile:Size of file. | |||
;cbFileAlloc:Allocated size. | |||
;attrFile:File attributes. | |||
;cchName:Length of file name. | |||
;achName[ [[CCHMAXPATHCOMP]] ]:File name including null terminator. | |||
[[Category:Data type]] | |||
Latest revision as of 01:44, 26 January 2020
Find file buffer data structure.
Type
FDATE fdateCreation FTIME ftimeCreation FDATE fdateLastAccess FTIME ftimeLastAccess FDATE fdateLastWrite FTIME ftimeLastWrite ULONG cbFile ULONG cbFileAlloc USHORT attrFile UCHAR cchName CHAR achName[ CCHMAXPATHCOMP ]
C Declaration Method
typedef struct
Fields
- fdateCreation
- Date of file creation.
- ftimeCreation
- Time of file creation.
- fdateLastAccess
- Date of last access.
- ftimeLastAccess
- Time of last access.
- fdateLastWrite
- Date of last write.
- cbFile
- Size of file.
- cbFileAlloc
- Allocated size.
- attrFile
- File attributes.
- cchName
- Length of file name.
- achName[ CCHMAXPATHCOMP ]
- File name including null terminator.