C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
_find_t Structure
                                             Up Contents Index Back
─────Run-Time Library───────────────────────────────────────────────────────
 
  Include:  <dos.h>
 
  Context:  _dos_findfirst
 
  Structure:
 
  struct _find_t
  {                        // File information return structure
      char reserved[21];   // Reserved for use by DOS
      char attrib;         // Attribute for matched path: Attributes
      unsigned wr_time;    // Time of last file write:    Time Format
      unsigned wr_date;    // Date of last file write:    Date Format
      long size;           // Length of file in bytes
      char name[13];       // Null-terminated name of matched
                           //   file/directory, without the path
  };
                                    -♦-