How can I discover any USB storage devices and/or CD/DVD writers available at a given time (using C# .Net2.0).
I would like to present users with a choice of devices onto which a file can be stored for physically removal - i.e. not the hard drive.
|
|
|
|
|
|
|
The DriveInfo class documentation is here: http://msdn.microsoft.com/en-us/library/system.io.driveinfo.aspx |
||
|
|
|
|
in c# you can get the same by using the System.IO.DriveInfo class
|
||
|
|
|
|
this is VB.NET code to check for any removable drives or CDRom drives attached to the computer:
it won't be that hard to modify this code into a c# equivalent, and more driveType's are available.
|
||
|
|