Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

FILE_TIMESTAMPS structure

[Some information relates to pre-released product which may be substantially modified before it's commercially released. Microsoft makes no warranties, express or implied, with respect to the information provided here.]

The FILE_TIMESTAMPS structure specifies the last recorded instance of specific actions on a file.

Syntax

typedef struct _File_TIMESTAMPS {
 LARGE_INTEGER CreationTime;
 LARGE_INTEGER LastAccessTime;
 LARGE_INTEGER LastWriteTime;
 LARGE_INTEGER ChangeTime;
} FILE_TIMESTAMPS, *PFILE_TIMESTAMPS;

Members

  • CreationTime
    Specifies the creation time of a file.

  • LastAccessTime
    Specifies the last time a file was accessed.

  • LastWriteTime
    Specifies the last time a file was written to.

  • ChangeTime
    Specifies the last time a file was changed or modified.

Requirements

Header

Ntifs.h (include Ntifs.h or Fltkernel.h)

See also

ATOMIC_CREATE_ECP_CONTEXT

Send comments about this topic to Microsoft

Additional resources