列出c#中的所有磁盘分区
本文关键字:磁盘 分区 列出 | 更新日期: 2023-09-27 18:18:51
我一直在编写用于列出磁盘所有分区的代码,并且我发现了一个问题。WMI的Win32_DiskDrive
属性Partitions
显示一个测试磁盘有5个分区,但我只能列出其中的4个(最后两个分区显示为只有一个)。最后两个分区是主分区,但其中一个是SWAP分区,另一个是Linux分区。
我想这应该能奏效:
/// <summary>
/// Loads all Drives of the Computer and returns a List.
/// </summary>
private List<DriveInfo> LoadDrives()
{
var drives = new List<DriveInfo>();
foreach (DriveInfo drive in DriveInfo.GetDrives())
{
if (drive.IsReady)
{
drives.Add(drive);
}
}
return drives;
}
我相信你想要的是string[] System.IO.Directory.GetLogicalDrives()
。
对于使用GetLogicalDrives
获得的每个string
,您可以创建一个System.IO.DriveInfo
对象,它将提供有关逻辑驱动器的各种信息。
DriveInfo.GetDrives()
可能是上述两个步骤的快捷方式。但我不完全确定,文档也不是很清楚。