如何在文本文件中添加文本開頭的現有數據。基本上我需要在文本文件中的這些數據之前提供一個標題。這個頭是一個動態數據。將標題添加到現有文件
這是我的實際文本
The claim against the Defendant is for a breach of contract in respect of a Parking Charge Notice issued to the vehicle.
頭補充的是
17383001 followed by space (1983).
這是我的代碼
FileStream fs = new FileStream(@"C:\Users\IT-Administrator\Desktop\ee.txt", FileMode.Open, FileAccess.Write);
fs.Seek(0, SeekOrigin.Begin);
StreamWriter sw = new StreamWriter(fs);
//sw.WriteLine(comboBox7.Text +comboBox2.Text +textBox6.Text);
sw.WriteLine("{0}{1}{2}{3,-1983}", comboBox7.Text, comboBox2.Text,textBox6.Text, ' ');
sw.Close();
fs.Close();
請不要包含inf關於在問題標題中使用的語言的形容詞,除非在沒有它的情況下沒有意義。標籤用於此目的。 –