다음을 통해 공유


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

설명

이 속성은 모든 논리 드라이브를 반환합니다.

적용 대상

추가 정보