检索系统驱动器的最安全方法是什么

发布于 2024-07-22 05:03:13 字数 212 浏览 10 评论 0原文

我知道以下内容应该有效:

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

我对这个调用的问题是,如果由于某种原因有人决定删除“windir”Env Var,这将不起作用。

有没有更安全的方法来获取系统驱动器?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

梦里南柯 2024-07-29 05:03:13
string windir = Environment.SystemDirectory; // C:\windows\system32
string windrive = Path.GetPathRoot(Environment.SystemDirectory); // C:\

注意:此属性在内部使用 GetSystemDirectory() Win32 API。 它不依赖于环境变量。

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.

别理我 2024-07-29 05:03:13

该命令返回系统目录 (system32) 的路径。

Environment.GetFolderPath(Environment.SpecialFolder.System)

你也许可以使用它,那么你就不需要依赖环境变量了。

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.

猫弦 2024-07-29 05:03:13

我实际上可能误解的一件事是您想要系统驱动器,但通过使用“windir”您将获得 windows 文件夹。 因此,如果您需要一种安全的方式来获取 Windows 文件夹,您应该使用古老的 API 函数 GetWindowsDirectory。

这是为 C# 使用准备的函数。 ;-)

    [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();
    }

因此,如果您确实需要运行 Windows 的驱动器,您可以随后调用

System.IO.Path.GetPathRoot(WindowsDirectory());

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());
北方的韩爷 2024-07-29 05:03:13

您可以使用 GetWindowsDirectory API 来检索 windows 目录。

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

嘿哥们儿 2024-07-29 05:03:13

切勿读取环境变量(任何脚本或用户都可以更改它们!)
官方方法(MS内部,Explorer使用)是几十年来的Win32 api常见问题解答(请参阅Google组,Win32,系统api)

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)

山有枢 2024-07-29 05:03:13

有一个名为 SystemDrive 的环境变量

C:\>SET SystemDrive
SystemDrive=C:

Theres an environment variable called SystemDrive

C:\>SET SystemDrive
SystemDrive=C:
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文