等效于 Windows API 到 power shell get-physicaldisk 命令

Equivalent Windows API to power shell get-physicaldisk command

在 Windows 服务器中配置了存储池(物理磁盘 1 和物理磁盘 2),并在存储池外创建了虚拟磁盘。创建虚拟磁盘后,可以在VDS服务中看到Physical disk 3(Virtual disk)。

Power shell 命令:get-physicaldisk 提供所有物理磁盘详细信息,包括物理磁盘 1 和物理磁盘 2。

是否存在等同于get-physicaldisk命令的WindowsAPI? 如果是,请给我建议 API.

也许你可以使用 Microsoft WMI - Windows Management Instrumentation to get info through the MSFT_PhysicalDisk class

在这里您可以找到一个 C 示例作为起点。