玄関へお回り下さい。
利用可能なドライブを列挙する              (SNo.037)
使用コントロール Button1  
その他条件 WindowsXP(Vista) Visual Basic 2005(VB2008)
Windows 7 / Visual Basic 2010 
★ 利用可能なドライブを列挙する
 
Private Sub Button1_Click(ByVal sender As System.Object, _
             ByVal e As System.EventArgs) Handles Button1.Click
'利用可能なドライブを列挙する
  'Directory.GetLogicalDrives メソッド
  'このコンピューターの論理ドライブ名を "<drive letter>:\" の形式で取得します。
  For Each sDrive As String In System.IO.Directory.GetLogicalDrives()
   Debug.WriteLine(sDrive)
  Next

'結果 私の環境での取得結果
   ' A:\
   ' C:\
   ' D:\
   ' E:\
   ' F:\
   ' G:\
End Sub








2004/05/30
2005/09/18
2013/01/26

VBレスキュー(花ちゃん)

Visual Basic 2010
VB.NET2003,VB2005,VB2008