var removableDrives = from d in System.IO.DriveInfo.GetDrives() where d.DriveType == DriveType.Removable select d;
foreach (var item in removableDrives)
{
string name = item.Name;
}