2

我正在尝试创建一个程序,该程序将文本文件中的几行从文本框中编辑为用户设置的值。

至少,在我开始使用这个值设置之前。我什至无法编辑文件。这段代码有什么问题?我实际上尝试了更多示例,但没有一个有效。

private void pictureBox2_Click(object sender, EventArgs e) //login button
{
    username = textBox1.Text;
    using (StreamWriter writer = new StreamWriter("C:\\TEST.txt", true))
    {
        writer.WriteLine("Last User:" +username );
    }
    Application.Exit();
}

对不起,我的英语不好。

4

1 回答 1

5

有根据的猜测。

尝试将文件写入其他文件夹。
C盘根目录受操作系统写保护

例如

using (StreamWriter writer = new StreamWriter("C:\\TEMP\\TEST.txt", true))

或阅读Environment.SpecialFolder枚举以找到您的应用程序可以存储其数据的适当文件夹。

string appFolder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
string privateAppFolder = Path.Combine(appFolder, "MyAppFolder");
if(!Directory.Exists(privateAppFolder)) Directory.CreateDirectory(privateAppFolder);
string myFile = Path.Combine(privateAppFolder, "Test.txt");
using (StreamWriter writer = new StreamWriter(myFile, true))
{
    writer.WriteLine("Last User:" +username );
}
于 2013-07-02T21:45:57.450 回答