[Tips][フォルダー操作] 論理ドライブを取得する

スポンサーリンク

使用しているPCの論理ドライブを取得するには、DirectoryクラスGetLogicalDrivesメソッドを使用します。

GetLogicalDrivesメソッドは論理ドライブを<論理ドライブ名>:\の形式で返します。

下記は論理ドライブを取得する例です。

VBの例

'論理ドライブを取得する
Dim strDrives() As String = System.IO.Directory.GetLogicalDrives()

C#の例

// 論理ドライブを取得する
string[] strDrives = System.IO.Directory.GetLogicalDrives();
Please follow and like us:

コメント

タイトルとURLをコピーしました