現在のコンピュータの論理ドライブを取得する方法を記載します。

Directory.GetLogicalDrives を使用して、ドライブを取得する

Dim sDrives As String() = System.IO.Directory.GetLogicalDrives()
For Each sd As String In sDrives
    MessageBox.Show(sd)
Next

 

DriveInfo.GetDrives を使用して、ドライブを取得する

Dim Drives As System.IO.DriveInfo() = System.IO.DriveInfo.GetDrives()
For Each d As System.IO.DriveInfo In Drives
    MessageBox.Show(d.Name)
Next