ac#windowsログインフォームを作成し、ユーザー名またはパスワードをテキストファイルに保存していますが、保存したのと同じユーザー名またはパスワードを使用するたびに、そのテキストファイルに新しい場所が追加されます。
しかし、私が欲しいのは、そのテキストファイルにすでに保存されているのと同じユーザー名またはパスワードを置き換えることです。
これは私のコードです:
private void button1_Click(object sender, EventArgs e)
{
try
{
FileStream fs = new FileStream("data.txt", FileMode.Append,
FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);
sw.Write("Email ID: ");
sw.WriteLine(textBox1.Text);
sw.Write("Password: ");
sw.Write(textBox2.Text);
sw.WriteLine();
sw.WriteLine();
sw.Flush();
sw.Close();
fs.Close();
}
catch (Exception)
{
MessageBox.Show("Error", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
this.Close();
}
MessageBox.Show("DONE", "Done", MessageBoxButtons.OK, MessageBoxIcon.Information);
textBox1.Clear();
textBox2.Clear();
}