我有一个程序可以告诉我所有的硬盘/USB,但它只告诉我驱动器号而不是名称。这是我所拥有的:

DriveInfo[] drives = DriveInfo.GetDrives();
Console.WriteLine("Detected Drives: ");
for(int i = 0; i < drives.Count(); i++)
{
     Console.WriteLine("Drive " + i + ": " + drives[i].Name);
}

return drives;

这打印:
Drive 0: C:\
Drive 1: E:\

但我想要这样的名字
Drive 0: C:\ Local disk
Drive 1: E:\ Kingston USB

我怎么得到这个?

最佳答案

您正在寻找 VolumeLabel 属性:

http://msdn.microsoft.com/en-us/library/system.io.driveinfo.volumelabel.aspx

例子:

Console.WriteLine(drives[i].VolumeLabel);

关于c# - 如何获取驱动器号和名称(卷标),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19185655/

10-13 08:11