Use for Level 1 (FIL_STANDARD) file information for:

typedef struct _FILESTATUS {  FDATE      fdateCreation;    /*  Date of file creation. */
  FTIME      ftimeCreation;    /*  Time of file creation. */
  FDATE      fdateLastAccess;  /*  Date of last access. */
  FTIME      ftimeLastAccess;  /*  Time of last access. */
  FDATE      fdateLastWrite;   /*  Date of last write. */
  FTIME      ftimeLastWrite;   /*  Time of last write. */
  ULONG      cbFile;           /*  File size (end of data). */
  ULONG      cbFileAlloc;      /*  File allocated size. */
  USHORT     attrFile;         /*  Attributes of the file. */
} FILESTATUS;

typedef   FILESTATUS   * PFILESTATUS ;


[Back] [Next]