FINDEX_INFO_LEVELS

The FINDEX_INFO_LEVELS enumeration type defines values that are used with the FindFirstFileEx function to specify the information level of the returned data.

typedef enum _FINDEX_INFO_LEVELS { 
    FindExInfoStandard 
} FINDEX_INFO_LEVELS ; 
 
Enumerator Value Meaning
FindExInfoStandard The FindFirstFileEx function obtains a standard set of attribute information. The data is returned in a WIN32_FIND_DATA structure.

QuickInfo

  Windows NT: Requires version 4.0 or later.
  Windows: Unsupported.
  Windows CE: Unsupported.
  Header: Declared in winbase.h.

See Also

File I/O Overview, File Enumeration Types, FindFirstFileEx, WIN32_FIND_DATA