Tuesday 11 November 2014

Determine a Drive's Type in Visual Basic

Determine a Drive's Type in Visual Basic

To determine the type of a drive
Use the DriveType property to determine the type, as illustrated in the following code.

    Dim cdrive As System.IO.DriveInfo
    cdrive = My.Computer.FileSystem.GetDriveInfo("C:\")
    MsgBox(cdrive.DriveType.ToString)