web-dev-qa-db-ja.com

C#でディスク情報を取得するにはどうすればよいですか?

C#を使用して、コンピューター上の論理ドライブの情報にアクセスしたい。どうすればこれを達成できますか?ありがとう!

44
leo

ほとんどの情報については、 DriveInfo クラスを使用できます。

using System;
using System.IO;

class Info {
    public static void Main() {
        DriveInfo[] drives = DriveInfo.GetDrives();
        foreach (DriveInfo drive in drives) {
            //There are more attributes you can use.
            //Check the MSDN link for a complete example.
            Console.WriteLine(drive.Name);
            if (drive.IsReady) Console.WriteLine(drive.TotalSize);
        }
    }
}
70
Vinko Vrsalovic

ドライブ文字がないマウントボリュームについてはどうですか?

foreach( ManagementObject volume in 
             new ManagementObjectSearcher("Select * from Win32_Volume" ).Get())
{
  if( volume["FreeSpace"] != null )
  {
    Console.WriteLine("{0} = {1} out of {2}",
                  volume["Name"],
                  ulong.Parse(volume["FreeSpace"].ToString()).ToString("#,##0"),
                  ulong.Parse(volume["Capacity"].ToString()).ToString("#,##0"));
  }
}
5
Foozinator

ローカルマシンで単一/特定のドライブの情報を取得する場合。 DriveInfo classを使用して、次のように実行できます。

//C Drive Path, this is useful when you are about to find a Drive root from a Location Path.
string path = "C:\\Windows";

//Find its root directory i.e "C:\\"
string rootDir = Directory.GetDirectoryRoot(path);

//Get all information of Drive i.e C
DriveInfo driveInfo = new DriveInfo(rootDir); //you can pass Drive path here e.g   DriveInfo("C:\\")

long availableFreeSpace = driveInfo.AvailableFreeSpace;
string driveFormat = driveInfo.DriveFormat;
string name = driveInfo.Name;
long totalSize = driveInfo.TotalSize;
5
mmushtaq

System.IO.DriveInfoクラスを使用します http://msdn.Microsoft.com/en-us/library/system.io.driveinfo.aspx

4
rravuri

DriveInfo クラスを確認し、必要な情報がすべて含まれているかどうかを確認します。

2
bruno conde