FileSystemProxy.Drives Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a read-only collection of all available drive names.
public:
property System::Collections::ObjectModel::ReadOnlyCollection<System::IO::DriveInfo ^> ^ Drives { System::Collections::ObjectModel::ReadOnlyCollection<System::IO::DriveInfo ^> ^ get(); };
public System.Collections.ObjectModel.ReadOnlyCollection<System.IO.DriveInfo> Drives { get; }
member this.Drives : System.Collections.ObjectModel.ReadOnlyCollection<System.IO.DriveInfo>
Public ReadOnly Property Drives As ReadOnlyCollection(Of DriveInfo)
Property Value
A read-only collection of all available drives as DriveInfo objects.
Examples
This example displays the available drive names in a message box.
Dim getInfo = System.IO.DriveInfo.GetDrives()
For Each info In getInfo
MsgBox(info.name)
Next
Remarks
This property returns all logical drives.
Applies to
See also
ทํางานร่วมกับเราใน GitHub
แหล่งที่มาสำหรับเนื้อหานี้สามารถพบได้บน GitHub ซึ่งคุณยังสามารถสร้างและตรวจสอบปัญหาและคำขอดึงข้อมูลได้ สำหรับข้อมูลเพิ่มเติม ให้ดูคู่มือผู้สนับสนุนของเรา