INtime SDK Help
FILE_INFO_BASIC structure

See GetRtFileInfoByHandle

Syntax

typedef struct tagFileInfoBasic {
    TIMEVALUE   tCreateTime;
    TIMEVALUE   tAccessTime;
    TIMEVALUE   tModifyTime;
    DWORD       dwFileAttributes;
} FILE_INFO_BASIC;

Fields

tCreateTime
The time that the file was created.
tAccessTime
The time that the file was last accessed.
tModifyTime
The time that the file was last modified.
dwFileAttributes
A bitfield representing the file attributes. Bit definitions as follows:
Attribute Description
FILE_ATTR_READONLY File is read-only
FILE_ATTR_HIDDEN File is hidden
FILE_ATTR_SYSTEM File is marked as a system file
FILE_ATTR_DIRECTORY File is a directory
FILE_ATTR_ARCHIVE File is marked for archiving
FILE_ATTR_DEVICE File is a device
FILE_ATTR_NORMAL File is a normal file (not a device nor a directory)

Requirements

Versions Defined in Include Link to
INtime 6.0 intime/rt/include/rtdef.h rt.h rt.lib

See Also