■10752 / ) |
Re[3]: テキストファイルへの書き込み |
□投稿者/ επιστημη (682回)-(2007/11/25(Sun) 14:08:25)
|
ざっくりとこんな感じでしょうか。
System.IO.FileStream stream = System.IO.File.Open("なにかしら.rtf",
System.IO.FileMode.Append | System.IO.FileMode.OpenOrCreate);
System.IO.StreamWriter writer = new System.IO.StreamWriter(stream);
writer.Write(追加文字列);
writer.Close();
|
|