点击事件更新文件C#

时间:2017-06-03 11:27:18

标签: c# winforms

我正在尝试创建一个更新配置文件的应用程序。

我做了以下表格:

enter image description here

我还创建了以下代码:

using System;
using System.IO;
using System.Windows.Forms;

namespace DebugOnOrOff
{
public partial class Form1 : Form
{
    public Form1()
    {
                    InitializeComponent();

    }

    private void button1_Click(object sender, EventArgs e)
    {
        string text = File.ReadAllText("C:\\Users\\User\\Desktop\\app.config");
        text = text.Replace("DebugOff", "DebugOn");
        File.WriteAllText("app.config", text);

    }
}

}

2 个答案:

答案 0 :(得分:0)

File.WriteAllText("app.config", text);

应该是:

File.WriteAllText("C:\\Users\\User\\Desktop\\app.config", text);

答案 1 :(得分:0)

File.WriteAllText("app.config", text);

应该是

File.WriteAllText("C:\\Users\\User\\Desktop\\app.config", text);

或者

File.WriteAllText(@"C:\Users\User\Desktop\app.config", text);

作为旁注,您也可以替换此

File.ReadAllText("C:\\Users\\User\\Desktop\\app.config");

使用

File.ReadAllText(@"C:\Users\User\Desktop\app.config");