• Asp.net使用代码修改配置文件的节点值


    使用代码修改配置文件的方法:

    1、打开配置文件写入的权限

    2、先按节点名称长到要修改的节点,然后删除,紧接着将有新值的节点添加回去

    3、关闭配置文件写入的权限

    修改Appsetting节点的值,修改其它节点的方法也差不多,也是找到要修改的节点删除掉然后新新值的节点加上

            public bool UpdateAppSettings(string key, string value)
            {
                bool reuslt = false;
    
                try
                {
                    Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
                    SetFileAccess(config.FilePath + "", false);
                    ConfigurationSection sections = config.GetSection("appSettings");
                    bool isSet = false;
                    for (int i = 0; i < ((System.Configuration.AppSettingsSection)(sections)).Settings.Count; i++)
                    {
                        string itemkey = ((System.Configuration.AppSettingsSection)(sections)).Settings.AllKeys[i];
                        if (itemkey == key)
                        {
                            ((System.Configuration.AppSettingsSection)(sections)).Settings.Remove(key);
                            ((System.Configuration.AppSettingsSection)(sections)).Settings.Add(key, value);
                            isSet = true;
                            break;
                        }
                    }
                    if (!isSet)
                    {
                        ((System.Configuration.AppSettingsSection)(sections)).Settings.Add(key, value);
                    }
    
                    config.Save();
                    ConfigurationManager.RefreshSection("appSettings");
    
                    SetFileAccess(config.FilePath + "", true);
                    reuslt = true;
                }
                catch (Exception ex)
                {
                    LogNet.Log.WriteLog("UpdateAppSettings", ex);
                }
    
                return reuslt;
            }
    View Code

    修改配置文件的读写权限

            protected void SetFileAccess(string path, bool isReadOnly)
            {
                FileInfo fi = new FileInfo(path);
                if (fi.IsReadOnly != isReadOnly)
                    fi.IsReadOnly = isReadOnly;
            }
    View Code
  • 相关阅读:
    多工作簿引用
    Record.ToTable记录到表Table.FromRecords/Record.To…(Power Query 之 M 语言)
    Sumif矩阵区域条件求和
    计算不重复
    数值到列表(Power Query 之 M 语言)
    Table.FromList列表到表Table.From…(Power Query 之 M 语言)
    图文表排版
    按比例划分等级
    Diocp HTTPServer 支持SVG
    责任声明和转载声明 .
  • 原文地址:https://www.cnblogs.com/yonsy/p/5606920.html
Copyright © 2020-2023  润新知