12

すべてのハードディスク/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

どうすればこれを入手できますか?

4

2 に答える 2

18

VolumeLabel物件をお探しの方:

http://msdn.microsoft.com/en-us/library/system.io.driveinfo.volumelabel.aspx

例:

Console.WriteLine(drives[i].VolumeLabel);
于 2013-10-04T15:59:53.490 に答える
8

これを試して

 try
        {
            DriveInfo[] myDrives = DriveInfo.GetDrives();

            foreach (DriveInfo drive in myDrives)
            {
                Console.WriteLine("Drive:" + drive.Name);
                Console.WriteLine("Drive Type:" + drive.DriveType);

                if (drive.IsReady == true)
                {
                    Console.WriteLine("Vol Label:" + drive.VolumeLabel);
                    Console.WriteLine("File System: " + drive.DriveFormat);

                }
            }
        }
        catch (Exception)
        {

            throw;
        }
于 2013-10-04T16:32:21.803 に答える