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

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:


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


You can use Environment.CurrentDirectory to get the current directory. Environment.SystemDirectory will give you the system folder (ie: C:\Windows\System32). Path.GetPathRoot will give you the root of the path:

var rootOfCurrentPath = Path.GetPathRoot(Environment.CurrentDirectory);
var driveWhereWindowsIsInstalled = Path.GetPathRoot(Environment.SystemDirectory);

Tags:

Windows

C#

.Net