Here you can display and identify how many removal disk are available on your system           

         
 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;
            }