如何以编程方式获取 user.config 文件的位置?

发布于 2024-12-29 09:31:53 字数 336 浏览 0 评论 0原文

我想在 Windows 窗体应用程序中显示 user.config 文件的位置,以便用户可以轻松找到它。

我了解路径是如何创建的,这要归功于: 我可以控制 .NET 用户设置的位置以避免在应用程序升级时丢失设置吗?

但是,如果这种情况发生变化,我宁愿不必在我的应用程序中构建路径,特别是如果有一种简单的方法来获取 user.config 文件位置。

I'd like to display the location of the user.config file in my windows forms application so a user can easily find it.

I understand how the path is created thanks to: Can I control the location of .NET user settings to avoid losing settings on application upgrade?.

However, in case this changes, I would rather not have to construct path this in my app, especially if there is an easy method for getting the user.config file location.

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

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

发布评论

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

评论(3

记忆消瘦 2025-01-05 09:31:53

试试这个:

var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoaming);

MessageBox.Show(config.FilePath);

Try this:

var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoaming);

MessageBox.Show(config.FilePath);
把时间冻结 2025-01-05 09:31:53

根据应用程序的运行方式,ConfigurationUserLevel.PerUserRoamingAndLocal 可能是您正在寻找的属性,而不是 ConfigurationUserLevel.PerUserRoaming;

即:

var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
MessageBox.Show(config.FilePath);

请确保在项目引用中包含 System.Configuration 才能使用它。

Depending on how your application runs, ConfigurationUserLevel.PerUserRoamingAndLocal may be the property you're looking for rather than ConfigurationUserLevel.PerUserRoaming;

i.e:

var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
MessageBox.Show(config.FilePath);

Be sure to have System.Configuration in your project's references in order to use this.

失去的东西太少 2025-01-05 09:31:53

使用 ConfigurationManager 获取 Configuration 对象。 Configuration 对象有一个字符串属性 FilePath
请参阅:配置成员

Use the ConfigurationManager to get the Configuration-object. The Configuration-object has a string property FilePath.
See: Configuration-Members

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