using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace DH.Commons.Helper { /// /// 配置文件操作工具类(自动定位主程序配置) /// public static class SystemConfigHelper { private static Configuration _mainConfig; private static readonly object _lock = new object(); /// /// 获取主程序配置对象 /// private static Configuration MainConfiguration { get { if (_mainConfig == null) { lock (_lock) { if (_mainConfig == null) { // 获取主程序路径 string exePath = Assembly.GetEntryAssembly().Location; var configFile = exePath + ".config"; // 加载主程序配置 var fileMap = new ExeConfigurationFileMap { ExeConfigFilename = configFile }; _mainConfig = ConfigurationManager.OpenMappedExeConfiguration( fileMap, ConfigurationUserLevel.None ); } } } return _mainConfig; } } /// /// 检查配置项是否存在 /// public static bool KeyExists(string key) { return MainConfiguration.AppSettings.Settings[key] != null; } /// /// 读取配置项(带类型自动转换) /// public static T GetValue(string key, T defaultValue = default) { try { var setting = MainConfiguration.AppSettings.Settings[key]; if (setting == null) return defaultValue; return (T)Convert.ChangeType(setting.Value, typeof(T)); } catch { return defaultValue; } } /// /// 写入配置项(自动保存) /// public static void SetValue(string key, object value) { var settings = MainConfiguration.AppSettings.Settings; var stringValue = value?.ToString() ?? string.Empty; if (settings[key] == null) { settings.Add(key, stringValue); } else { settings[key].Value = stringValue; } SaveChanges(); } /// /// 删除指定配置项 /// public static void RemoveKey(string key) { if (KeyExists(key)) { MainConfiguration.AppSettings.Settings.Remove(key); SaveChanges(); } } /// /// 保存配置修改 /// private static void SaveChanges() { MainConfiguration.Save(ConfigurationSaveMode.Modified); ConfigurationManager.RefreshSection("appSettings"); } } }