Platform SDK: Files and I/O

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 retrieves a standard set of attribute information. The data is returned in a WIN32_FIND_DATA structure.

Requirements

  Windows NT/2000: Requires Windows NT 4.0 or later.
  Windows 95/98: Unsupported.
  Header: Declared in Winbase.h; include Windows.h.

See Also

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