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

注解

此属性返回所有逻辑驱动器。

适用于

另请参阅