.Net 使用特殊文件夹表示法

发布于 2024-12-04 10:38:05 字数 459 浏览 0 评论 0原文

我希望能够做这样的事情:

IO.Directory.Exists("%USERPROFILE%")

原因是我想指定我的应用程序将使用的目录之一,作为配置文件中的纯文本。在某些情况下,我希望它嵌套在用户配置文件下,在这种情况下,配置文件将显示如下内容:

...
LocalDbDirectory = %USERPROFILE%\Application Data\My Toolkit\
...

或者我可能希望它位于网络位置,在这种情况下,它会显示如下内容:

...
LocalDbDirectory = N:\Common\My Toolkit Databases\
...

所以我需要能够使用 IO.Directory.Exists(...) 或等效方法解释简写符号。

有什么想法吗?

I want to be able to do something like this:

IO.Directory.Exists("%USERPROFILE%")

The reason being that I want to specify one of the directories which my application will use, as plain text in a config file. In some cases I will want it to be nested under the user profile, in which case the config file would read something like:

...
LocalDbDirectory = %USERPROFILE%\Application Data\My Toolkit\
...

Or I might want it to be in a network location, in which case it would read something like:

...
LocalDbDirectory = N:\Common\My Toolkit Databases\
...

So I need to be able to interpret the shorthand notation with methods such as IO.Directory.Exists(...) or equivalent.

Any ideas?

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

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

发布评论

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

评论(2

指尖凝香 2024-12-11 10:38:05

您需要通过 Environment.ExpandEnvironmentVariables(path) 运行它们; 其中路径为 @"%USERPROFILE%\Application Data\My Toolkit\" (对于不包含 %% 的路径执行此操作没有任何害处格式化令牌)

You need to run them through Environment.ExpandEnvironmentVariables(path); where path is @"%USERPROFILE%\Application Data\My Toolkit\" (There is no harm in doing this for paths that do not contain %% formatted tokens)

a√萤火虫的光℡ 2024-12-11 10:38:05

如果简写是有效的环境变量,您可以解析它们的值:

    static void Main(string[] args)
    {
        string val = Environment.ExpandEnvironmentVariables("%USERPROFILE%");
        Console.WriteLine(val);
        Console.Read();
    }

从 .NET 4 开始,特殊文件夹支持包括用户配置文件:

Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);

If the short-hands are valid environment variables, you can resolve their value:

    static void Main(string[] args)
    {
        string val = Environment.ExpandEnvironmentVariables("%USERPROFILE%");
        Console.WriteLine(val);
        Console.Read();
    }

As of .NET 4, special folder support includes user profile:

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