I am using the following code to get a list of the letters for each drive on my computer. I want to get the drive letter of CD Drive from this list. Please advise how to check it.

The code I am using to get list is as below:

In the Form.Load event:

    cmbDrives.DropDownStyle = ComboBoxStyle.DropDownList
    Dim sDrive As String, sDrives() As String
    sDrives = ListAllDrives()
    For Each sDrive In sDrives
    Next
    cmbDrives.Items.AddRange(ListAllDrives())

Public Function ListAllDrives() As String()
    Dim arDrives() As String
    arDrives = IO.Directory.GetLogicalDrives()
    Return arDrives
End Function
link|improve this question

59% accept rate
So, the code you've shown works to enumerate all the drive letters, and you're asking how to determine which one is the CD-ROM drive? What do you propose to do in cases where the computer has multiple CD drives (such as a CD-RW and a DVD)? – Cody Gray Mar 12 '11 at 7:18
yes sir, that is the issue. May be it can put the letters of all these dirves into a listbox?????? But how to determine the type? – Furqan Sehgal Mar 12 '11 at 7:22
feedback

2 Answers

up vote 3 down vote accepted

Tested, and returns the correct results on my computer:

Dim cdDrives = From d In IO.DriveInfo.GetDrives() _
                Where d.DriveType = IO.DriveType.CDRom _
                Select d

For Each drive In cdDrives
    Console.WriteLine(drive.Name)
Next

Assumes 3.5, of course, since it's using LINQ. To populate the list box, change the Console.WriteLine to ListBox.Items.Add.

link|improve this answer
Hrmm, looks like I did miss it. Good answer. – Cody Gray Mar 12 '11 at 7:47
Great Answer ! works fine. Thanks – Furqan Sehgal Mar 12 '11 at 10:02
feedback
For Each drive In DriveInfo.GetDrives()

   If drive.DriveType = DriveType.CDRom Then
       MessageBox.show(drive.ToString())

   else MessageBox.show("Not the cd or dvd rom" & " " & drive.ToString())

   End If

Next
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.