FileSystem.Drives 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回所有可用驱动器名称的只读集合。
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
注解
此属性返回所有逻辑驱动器。