Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get current windows directory e.g. C:\ in C#

Tags:

c#

.net

windows

As the title suggests, how can you get the current OS drive, so you could add it in a string e.g.:

MessageBox.Show(C:\ + "My Documents");

Thanks

like image 622
Miles Avatar asked Sep 03 '25 14:09

Miles


2 Answers

Add a reference to System.IO:

using System.IO;

Then in your code, write:

string path = Path.GetPathRoot(Environment.SystemDirectory);

Let's try it out by showing a message box.

MessageBox.Show($"Windows is installed to Drive {path}");

Message box:

like image 176
Otávio Décio Avatar answered Sep 05 '25 02:09

Otávio Décio


When looking for a specific folder (such as My Documents), do not use a hard-coded path. Paths can change from version-to-version of Windows (C:\Documents and Settings\ vs C:\Users\) and were localized in older versions (C:\Users\user\Documents\ vs C:\Usuarios\user\Documentos\). Depending on configuration, user profiles could be on a different drive than Windows. Windows might not be installed where you expect it (it doesn't have to be in \Windows\). There's probably other cases I'm not aware of.

Instead, use the Shell API (SHGetKnownFolderPath) to get the actual path. In .NET, these values are easily obtained from Environment.GetFolderPath. If you're looking for the user's My Documents folder:

Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);

Full list of special folders

like image 32
josh3736 Avatar answered Sep 05 '25 03:09

josh3736