如何获取物理存储设备列表?
我想获取物理存储设备的列表。
我见过一些代码,但实际上是循环并执行类似暴力的操作。
我想知道获取物理存储磁盘列表的一般方法是什么。
我发现 CreateFile ()
。但我不明白如何正确使用它。我需要一个非 wmi 解决方案。如果不查询注册表就更好了。
I want to get a list of physical storage devices.
I've seen some code but that actually loops and does something like brute force.
I want to know what is the general way of getting the list of physical storage disks.
I've found CreateFile()
. But I cannot understand how to use it properly. I need a non-wmi solution. and it's better if it doesn't query registry.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了以下代码,枚举所有卷,然后查找其相应的物理驱动器:
I've used the following code, that enumerates all the volumes and then looks for their corresponding physical drives: