1
既存のファイルの正確な場所にテキストを挿入しようとしています。 最初に適用した方法 - 何も影響しませんか?既存のテキストファイルの正確な場所にテキストを挿入する
string newData;
string data = System.IO.File.ReadAllText("lal.txt");
int indx = data.IndexOf("1");
if (data.Contains("1"))
{
MessageBox.Show(indx.ToString());
newData=data.Insert(indx+1, "ooooooooooooooooooooooooo");
File.WriteAllText("lal.txt",data);
}
私は - このメソッドを使用しているもう一つの方法は、完全にすべての内容を消去したり全くコンテンツを作成していません?
string newData;
string data = System.IO.File.ReadAllText("lal.txt");
int indx = data.IndexOf("1");
if (data.Contains("1"))
{
MessageBox.Show(indx.ToString());
newData=data.Insert(indx+1, "ooooooooooooooooooooooooo");
var f = new StreamWriter(File.Create("ll1.txt"));
f.Write(newData);
//data.Insert(indx, "OIasasas");
}
を動作するはずです – mofidul