gpt4 book ai didi

c# - 如何获取驱动器号和名称(卷标)

转载 作者:太空狗 更新时间:2023-10-29 20:52:56 26 4
gpt4 key购买 nike

我有一个程序可以告诉我所有的硬盘/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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com