FileSystem.Drives プロパティ

定義

利用可能なすべてのドライブ名の読み取り専用コレクションを返します。

public:
 static property System::Collections::ObjectModel::ReadOnlyCollection<System::IO::DriveInfo ^> ^ Drives { System::Collections::ObjectModel::ReadOnlyCollection<System::IO::DriveInfo ^> ^ get(); };
public static System.Collections.ObjectModel.ReadOnlyCollection<System.IO.DriveInfo> Drives { get; }
static member Drives : System.Collections.ObjectModel.ReadOnlyCollection<System.IO.DriveInfo>
Public Shared ReadOnly Property Drives As ReadOnlyCollection(Of DriveInfo)

プロパティ値

DriveInfo オブジェクトとして使用できるすべてのドライブの読み取り専用コレクション。

次の使用例は、使用可能なドライブ名をメッセージ ボックスに表示します。

Dim getInfo = System.IO.DriveInfo.GetDrives()
For Each info In getInfo
    MsgBox(info.name)
Next

注釈

このプロパティは、すべての論理ドライブを返します。

適用対象

こちらもご覧ください