如何设置在app配置中保存的文件夹路径
本文关键字:配置 保存 路径 文件夹 app 何设置 设置 | 更新日期: 2023-09-27 18:16:44
我正在创建一个windows应用程序,其中一个报告文件夹。我想当用户设置我的应用程序用户可以设置报告文件夹的位置,这也将保存在我的app.config文件。
修改Application.exe.config
需要使用ConfigurationManager
类。下面是一个代码示例:
// Open App.Config of executable
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
// Add an Application Setting.
config.AppSettings.Settings.Remove("UserReportPath");
config.AppSettings.Settings.Add("UserReportPath", txtUserReportPath.Text);
// Save the configuration file.
config.Save(ConfigurationSaveMode.Modified);
// Force a reload of a changed section.
ConfigurationManager.RefreshSection("appSettings");