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 函数搜索其他装载的文件夹。

FindFirstVolumeMountPointFindNextVolumeMountPointFindVolumeMountPointClose 函数返回指定卷的装载文件夹的路径。 它们不返回驱动器号或卷 GUID 路径。 有关枚举卷 GUID 卷路径的信息,请参阅 枚举卷 GUID 路径

不应假定装载的文件夹的顺序与由其他函数或工具返回的已装载文件夹的顺序之间存在任何关联。

在 Windows 8 和 Windows Server 2012 中,以下技术支持此函数。

科技 支持
服务器消息块 (SMB) 3.0 协议
SMB 3.0 透明故障转移 (TFO)
具有横向扩展文件共享的 SMB 3.0 (SO)
群集共享卷文件系统 (CsvFS)
可复原文件系统 (ReFS)
 

SMB 不支持卷管理功能。 CsvFS 不支持在 CSV 卷上添加装入点。 ReFS 不为装入点编制索引。

注意

winbase.h 标头将 FindNextVolumeMountPoint 定义为一个别名,该别名根据 UNICODE 预处理器常量的定义自动选择此函数的 ANSI 或 Unicode 版本。 将中性编码别名与不中性编码的代码混合使用可能会导致编译或运行时错误不匹配。 有关详细信息,请参阅函数原型的 约定。

要求

要求 价值
最低支持的客户端 Windows XP [仅限桌面应用]
支持的最低服务器 Windows Server 2003 [仅限桌面应用]
目标平台 窗户
标头 winbase.h (包括 Windows.h)
Kernel32.lib
DLL Kernel32.dll

另请参阅

FindFirstVolumeMountPoint

FindVolumeMountPointClose

装载的文件夹

卷管理功能