I would like to populate a combo box with a list of logical drives but I would like to exclude any mapped drives. The code below gives me a list of all logical drives without any filtering.
comboBox.Items.AddRange(Environment.GetLogicalDrives());
Is there a method available that can help you determine between physical drives and mapped drives?