G
Greg Smith
Is there a way to detect how many, and what drive letters the CD/DVD drives
on a system are?
Any help is greatly appreciated.
on a system are?
Any help is greatly appreciated.
Is there a way to detect how many, and what drive letters the CD/DVD
drives on a system are?
foreach (System.IO.DriveInfo drive in System.IO.DriveInfo.GetDrives())
Console.WriteLine("{0}\t{1}", drive.Name, drive.DriveType);