我需要获取USB驱动器的名称。
假设我将USB驱动器重命名为“ZeroErrors”。
它是驱动器号“G:\”我想使用驱动器号来获取USB驱动器的名称。
答案 0 :(得分:7)
查看DriveInfo课程。
string name = new DriveInfo("g").VolumeLabel;
或适用于所有可移动驱动器:
DriveInfo.GetDrives()
.Where(x => x.DriveType == DriveType.Removable)
.Select(x => x.VolumeLabel)
答案 1 :(得分:4)
以下代码可以解决这个问题:
DriveInfo drive = new DriveInfo("G:");
Console.WriteLine(drive.VolumeLabel);
答案 2 :(得分:0)