c# 如何获取磁盘驱动名称?
string[]DriveNames=Directory.GetLogicalDrives();只能获取C,D,E这样名字,我要的是C盘,D盘等的名称,比如本地磁盘,如何...
string[] DriveNames = Directory.GetLogicalDrives();只能获取C,D,E这样名字,我要的是C盘,D盘等的名称,比如本地磁盘,如何获取?
展开
1个回答
展开全部
System.IO.DriveInfo[] drives = System.IO.Directory.GetLogicalDrives().Select(q => new System.IO.DriveInfo(q)).ToArray();
foreach (var driveInfo in drives)
{
if (driveInfo.IsReady)
{
Console.WriteLine(driveInfo.VolumeLabel);
}
}
DriveInfo实例的VolumeLabel属性就是你想要的
但是好像本地磁盘这个是系统的默认命名,你拿到的是空,自己命名的可以正常拿到
foreach (var driveInfo in drives)
{
if (driveInfo.IsReady)
{
Console.WriteLine(driveInfo.VolumeLabel);
}
}
DriveInfo实例的VolumeLabel属性就是你想要的
但是好像本地磁盘这个是系统的默认命名,你拿到的是空,自己命名的可以正常拿到
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询