msos2.hlp (Table of Contents; Topic list)
FILEFINDBUF2 (1.2)
                                                      Up Next Previous
────────────────────────────────────────────────────────────────────────────
 
#define INCL_DOSFILEMGR
 
typedef struct _FILEFINDBUF2 {    /* findbuf2 */
    FDATE  fdateCreation;
    FTIME  ftimeCreation;
    FDATE  fdateLastAccess;
    FTIME  ftimeLastAccess;
    FDATE  fdateLastWrite;
    FTIME  ftimeLastWrite;
    ULONG  cbFile;
    ULONG  cbFileAlloc;
    USHORT attrFile;
    ULONG  cbList;
    UCHAR  cchName;
    CHAR   achName[CCHMAXPATHCOMP];
} FILEFINDBUF2;
 
The FILEFINDBUF2 structure contains information about a file.
 
Field                    Description
────────────────────────────────────────────────────────────────────────────
 
fdateCreation            Specifies the date the file was created.
 
ftimeCreation            Specifies the time the file was created.
 
fdateLastAccess          Specifies the date the file was last accessed.
 
ftimeLastAccess          Specifies the time the file was last accessed.
 
fdateLastWrite           Specifies the date the file was last written to.
 
ftimeLastWrite           Specifies the time the file was last written to.
 
cbFile                   Specifies the end of file data.
 
cbFileAlloc              Specifies the allocated file size.
 
attrFile                 Specifies the file attributes.
 
cbList                   Specifies the size (in bytes) of the buffer needed
                         for the list of extended attributes in a
                         FIL_QUERYEASFROMLIST level request (see
                         DosFindFirst2).
 
cchName                  Specifies the length of the null-terminated
                         filename.
 
achName[CCHMAXPATHCOMP]  Specifies the null-terminated filename.
 
See Also
 
DosFindFirst2, FDATE, FTIME