C# WinForm修改配置文件
原创
©著作权归作者所有:来自51CTO博客作者兴想事成的原创作品,请联系作者获取转载授权,否则将追究法律责任
AppConfigPath 配置文件路径 ,注意 是exe运行的相对路径
private static string AppConfigPath = "WinListen.exe.config";
public static void AppSetValue(string AppKey, string AppValue)
{
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(AppConfigPath);
XmlNode xmlNode = xmlDocument.SelectSingleNode("//appSettings");
XmlElement xmlElement = (XmlElement)xmlNode.SelectSingleNode("//add[@key='" + AppKey + "']");
if (xmlElement != null)
{
xmlElement.SetAttribute("value", AppValue);
}
else
{
XmlElement xmlElement2 = xmlDocument.CreateElement("add");
xmlElement2.SetAttribute("key", AppKey);
xmlElement2.SetAttribute("value", AppValue);
xmlNode.AppendChild(xmlElement2);
}
xmlDocument.Save(AppConfigPath);
}