I have the following code:

        foreach (string uniqueRecorderID in discMaster)
        {
            MsftDiscRecorder2 discRecorder2 = new MsftDiscRecorder2();
            discRecorder2.InitializeDiscRecorder(uniqueRecorderID);
            comboBox1.Items.Add(discRecorder2);

        }
        comboBox1.SelectedIndex = 0;

The problem with this is that i want to show the drive letter in the combobox, so the user can select the drive he likes to use but still be able to use the selected drive's UniqueID to be able to burn the disc afterwards.

so is there any way to associate the UniqueID with the drive letter?

Thank you all.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can use the VolumePathNames property associated with the recorder. This contains a list of the drive letters and NTFS mount points for the device.

The drive letter should be in discRecorder2.VolumePathNames [0], but you can cycle through the list and add all of the items if you want.

link|improve this answer
Thank you very much. ill try it and report back. – sparky Dec 15 '11 at 17:44
Works perfectly! Thanks a lot!. I'm not sure if i should post a new question, but is it possible to identify if a drive is virtual and not physical? If Anybody thinks i should post a new one please let me know. – sparky Dec 15 '11 at 19:01
I think it would be best to post a new question. – competent_tech Dec 15 '11 at 19:07
feedback

Your Answer

 
or
required, but never shown

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