vote up 2 vote down star

I know that the following should work:

Environment.GetEnvironmentVariable("windir", EnvironmentVariableTarget.Machine)

My problem with this call is that if for some reason someone decided to remove the "windir" Env Var , this won't work.

Is there an even more secure way to get the System drive?

flag

6 Answers

vote up 4 vote down check

One thing i actually maybe misunderstand is that you want the System Drive, but by using "windir" you'll get the windows folder. So if you need a secure way to get the windows folder, you should use the good old API function GetWindowsDirectory.

Here is the function prepared for C# usage. ;-)

    [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Auto)]
    static extern uint GetWindowsDirectory(StringBuilder lpBuffer, uint uSize);

    private string WindowsDirectory()
    {
        uint size = 0;
        size = GetWindowsDirectory(null, size);

        StringBuilder sb = new StringBuilder((int)size);
        GetWindowsDirectory(sb, size);

        return sb.ToString();
    }

So if you really need the drive on which windows is running, you could afterwards call

System.IO.Path.GetPathRoot(WindowsDirectory());
link|flag
Hey, that's what I said! – Richard Szalay Jun 8 at 10:03
@Richard: That's right, but instead of just pointing to the concrete direction i added a sample, on how the function can be used. – Oliver Jun 8 at 12:09
vote up 5 vote down

This one returns the path to the system directory (system32).

Environment.GetFolderPath(Environment.SpecialFolder.System)

You may be able to use that, then you don't need to rely on environment variables.

link|flag
It's worth noting that GetFolderPath elates your environment variable fears since it uses SHGetFolderPath internally. – Richard Szalay May 26 at 10:44
vote up 2 vote down

You can use the GetWindowsDirectory API to retrieve the windows directory.

link|flag
vote up 1 vote down

Never read environment variables (any script or user can change them !)
The official method (MS internal, used by Explorer) is a Win32 api FAQ for decades (see Google groups, Win32, System api)

link|flag
vote up 0 vote down

Theres an environment variable called SystemDrive

C:\>SET SystemDrive
SystemDrive=C:
link|flag
Unfortunately, that method suffers from the same problem as the original WinDir environment variable - a user can arbitrarily change or remove it from their environment. – Greg Hewgill May 26 at 10:56
vote up 0 vote down
string windir = Environment.SystemDirectory; // C:\windows\system32
string windrive = Path.GetPathRoot(Environment.SystemDirectory); // C:\

Note: This property internally uses the GetSystemDirectory() Win32 API. It doesn't rely on environment variables.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.