FindNextVolumeMountPointA 函数 (winbase.h)
继续通过调用 FindFirstVolumeMountPoint 函数启动的装载的文件夹搜索。 FindNextVolumeMountPoint 每次调用查找一个装载的文件夹。
语法
BOOL FindNextVolumeMountPointA(
[in] HANDLE hFindVolumeMountPoint,
[out] LPSTR lpszVolumeMountPoint,
[in] DWORD cchBufferLength
);
参数
[in] hFindVolumeMountPoint
上一次调用 FindFirstVolumeMountPoint 函数返回的装载文件夹搜索句柄。
[out] lpszVolumeMountPoint
指向缓冲区的指针,该缓冲区接收找到的已装载文件夹的名称。
[in] cchBufferLength
接收装载的文件夹名称的缓冲区的长度,以 TCHAR 为单位。
返回值
如果该函数成功,则返回值为非零值。
如果函数失败,则返回值为零。 要获得更多的错误信息,请调用 GetLastError。 如果找不到更多装载的文件夹, GetLastError 函数将返回 ERROR_NO_MORE_FILES 错误代码。 在这种情况下,请使用 FindVolumeMountPointClose 函数关闭搜索。
注解
通过调用 FindFirstVolumeMountPoint 建立搜索句柄后,可以使用 FindNextVolumeMountPoint 函数搜索其他已装载的文件夹。
FindFirstVolumeMountPoint、FindNextVolumeMountPoint 和 FindVolumeMountPointClose 函数返回指定卷的已装载文件夹的路径。 它们不返回驱动器号或卷 GUID 路径。 有关枚举卷的卷 GUID 路径的信息,请参阅 枚举卷 GUID 路径。
不应假定使用这些函数返回的已装载文件夹的顺序与其他函数或工具返回的已装载文件夹的顺序之间存在任何关联。
在 Windows 8 和 Windows Server 2012 中,此函数由以下技术支持。
技术 | 支持 |
---|---|
服务器消息块 (SMB) 3.0 协议 | 否 |
SMB 3.0 透明故障转移 (TFO) | 否 |
具有横向扩展文件共享的 SMB 3.0 (SO) | 否 |
群集共享卷文件系统 (CSV) | 否 |
弹性文件系统 (ReFS) | 否 |
SMB 不支持卷管理功能。 CsvFS 不支持在 CSV 卷上添加装入点。 ReFS 不为装入点编制索引。
注意
winbase.h 标头将 FindNextVolumeMountPoint 定义为别名,该别名根据 UNICODE 预处理器常量的定义自动选择此函数的 ANSI 或 Unicode 版本。 将非特定编码别名与非非特定编码的代码混合使用可能会导致不匹配,从而导致编译或运行时错误。 有关详细信息,请参阅 函数原型的约定。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows XP [仅限桌面应用] |
最低受支持的服务器 | Windows Server 2003 [仅限桌面应用] |
目标平台 | Windows |
标头 | winbase.h (包括 Windows.h) |
Library | Kernel32.lib |
DLL | Kernel32.dll |