In C#, how do I get the name of the drive that the Operating System is installed on?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
This should do it for you:
|
|||
|
|
|
All other Environment properties can be found at ms itself : http://msdn.microsoft.com/en-us/library/system.environment_properties.aspx SystemDirectory - Gets the fully qualified path of the system directory. |
|||
|
|
|
There is an enum "SpecialFolder" in Environment where we can select the folder we are looking for.. Environment.GetFolderPath(Environment.SpecialFolder.Desktop); |
|||||
|