Free VB.NET Code Snippets, Source Code, Articles, Examples, Tutorials and Programming Help

Posts Tagged ‘drive type’

Get Drive Type in VB.NET

Dim Drives() As DriveInfo = DriveInfo.GetDrives()
Dim Builder As New System.Text.StringBuilder

Dim Info As DriveInfo
For Each Info In Drives
[...]