FINDEX_INFO_LEVELS 枚举 (minwinbase.h)

定义与 FindFirstFileEx 函数一起使用的值,以指定返回的数据的信息级别。

语法

typedef enum _FINDEX_INFO_LEVELS {
  FindExInfoStandard,
  FindExInfoBasic,
  FindExInfoMaxInfoLevel
} FINDEX_INFO_LEVELS;

常量

 
FindExInfoStandard
FindFirstFileEx 函数检索
标准属性信息集。 数据在 中返回
WIN32_FIND_DATA 结构。
FindExInfoBasic
FindFirstFileEx 函数不会查询短文件名,从而提高了总体枚举速度。 数据在 中返回
WIN32_FIND_DATA 结构和 cAlternateFileName
member 始终为 NULL 字符串。

Windows Server 2008、Windows Vista、Windows Server 2003 和 Windows XP: 在 Windows Server 2008 R2 和 Windows 7 之前不支持此值。
FindExInfoMaxInfoLevel
此值用于验证。 支持的值小于此值。

要求

要求
最低受支持的客户端 Windows XP [桌面应用 | UWP 应用]
最低受支持的服务器 Windows Server 2003 [桌面应用 | UWP 应用]
标头 minwinbase.h (包括 Minwinbase.h、Windows.h)

另请参阅

FindFirstFileEx

WIN32_FIND_DATA