DriveInfo.GetDrives メソッド
アセンブリ: mscorlib (mscorlib.dll 内)

Dim returnValue As DriveInfo() returnValue = DriveInfo.GetDrives
コンピュータ上の論理ドライブを表す DriveInfo 型の配列。


このメソッドは、コンピュータ上のすべての論理ドライブ名を取得します。この情報を使用して、配列を反復処理し、その他の DriveInfo メソッドおよびプロパティを使用してドライブに関する情報を取得できます。準備ができていないドライブでこのメソッドを使用すると、IOException がスローされます。このため、ドライブが準備できているかどうかをテストするには、IsReady プロパティを使用します。

DriveInfo クラスを使用して現在のシステムの全ドライブに関する情報を表示する方法を次のコード例に示します。
Imports System Imports System.IO Class Test Public Shared Sub Main() Dim allDrives() As DriveInfo = DriveInfo.GetDrives() Dim d As DriveInfo For Each d In allDrives Console.WriteLine("Drive {0}", d.Name) Console.WriteLine(" File type: {0}", d.DriveType) If d.IsReady = True Then Console.WriteLine(" Volume label: {0}", d.VolumeLabel) Console.WriteLine(" File system: {0}", d.DriveFormat) Console.WriteLine( _ " Available space to current user:{0, 15} bytes", _ d.AvailableFreeSpace) Console.WriteLine( _ " Total available space: {0, 15} bytes", _ d.TotalFreeSpace) Console.WriteLine( _ " Total size of drive: {0, 15} bytes ", _ d.TotalSize) End If Next End Sub End Class 'This code produces output similar to the following: ' 'Drive A:\ ' File type: Removable 'Drive C:\ ' File type: Fixed ' Volume label: ' File system: FAT32 ' Available space to current user: 4770430976 bytes ' Total available space: 4770430976 bytes ' Total size of drive: 10731683840 bytes 'Drive D:\ ' File type: Fixed ' Volume label: ' File system: NTFS ' Available space to current user: 15114977280 bytes ' Total available space: 15114977280 bytes ' Total size of drive: 25958948864 bytes 'Drive E:\ ' File type: CDRom ' 'The actual output of this code will vary based on machine and the permissions 'granted to the user executing it.
using System; using System.IO; class Test { public static void Main() { DriveInfo[] allDrives = DriveInfo.GetDrives(); foreach (DriveInfo d in allDrives) { Console.WriteLine("Drive {0}", d.Name); Console.WriteLine(" File type: {0}", d.DriveType); if (d.IsReady == true) { Console.WriteLine(" Volume label: {0}", d.VolumeLabel); Console.WriteLine(" File system: {0}", d.DriveFormat); Console.WriteLine( " Available space to current user:{0, 15} bytes", d.AvailableFreeSpace); Console.WriteLine( " Total available space: {0, 15} bytes", d.TotalFreeSpace); Console.WriteLine( " Total size of drive: {0, 15} bytes " , d.TotalSize); } } } } /* This code produces output similar to the following: Drive A:\ File type: Removable Drive C:\ File type: Fixed Volume label: File system: FAT32 Available space to current user: 4770430976 bytes Total available space: 4770430976 bytes Total size of drive: 10731683840 bytes Drive D:\ File type: Fixed Volume label: File system: NTFS Available space to current user: 15114977280 bytes Total available space: 15114977280 bytes Total size of drive: 25958948864 bytes Drive E:\ File type: CDRom The actual output of this code will vary based on machine and the permissions granted to the user executing it. */

- SecurityPermission (プラットフォーム呼び出しまたは COM 相互運用によるネイティブ コードの呼び出しなど、アンマネージ コードを呼び出すために必要なアクセス許可)。SecurityPermissionFlag.UnmanagedCode (関連する列挙体)

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からDriveInfo.GetDrives メソッドを検索する場合は、下記のリンクをクリックしてください。

- DriveInfo.GetDrives メソッドのページへのリンク