在c#中有什么方法可以找到虚拟磁盘驱动器的详细信息吗?

时间:2012-05-31 06:40:16

标签: c# windows

比如说D:是虚拟驱动器;我需要知道虚拟驱动器的以下细节。

 1. on which HDD it is present
 2. virtual drive no.
 3. want to write a file to confirm the details

问候

1 个答案:

答案 0 :(得分:0)

我认为您可能会在GetVirtualDiskPhysicalPath中寻找VHD API等。这个blog post包含一些使用VHD的C#代码,因此可能是一个开始的地方。

如果您无法从中获取所需的所有信息,那么您至少可以获取足够的信息,以便您可以使用WMI查询其余信息,可能使用Win32_DiskDrive或类似信息。< / p>