// ntifs.h
typedef struct _FILE_TIMESTAMPS {
LARGE_INTEGER CreationTime;
LARGE_INTEGER LastAccessTime;
LARGE_INTEGER LastWriteTime;
LARGE_INTEGER ChangeTime;
} FILE_TIMESTAMPS, *PFILE_TIMESTAMPS;
View the official Windows Driver Kit DDI referenceNo description available.
The FILE_TIMESTAMPS structure specifies the last recorded instance of specific actions on a file.
CreationTimeSpecifies the creation time of a file.
LastAccessTimeSpecifies the last time a file was accessed.
LastWriteTimeSpecifies the last time a file was written to.
ChangeTimeSpecifies the last time a file was changed or modified.