両方のファイルをテキスト ファイルとして扱いたい場合は、StreamWriter と StreamReader を使用できます。
using System;
using System.IO;
class Test
{
public static void Main()
{
string path = @"c:\temp\MyTest.txt";
// This text is added only once to the file.
if (!File.Exists(path))
{
// Create a file to write to.
using (StreamWriter sw = File.CreateText(path))
{
sw.WriteLine("Hello");
sw.WriteLine("And");
sw.WriteLine("Welcome");
}
}
// This text is always added, making the file longer over time
// if it is not deleted.
using (StreamWriter sw = File.AppendText(path))
{
sw.WriteLine("This");
sw.WriteLine("is Extra");
sw.WriteLine("Text");
}
// Open the file to read from.
using (StreamReader sr = File.OpenText(path))
{
string s = "";
while ((s = sr.ReadLine()) != null)
{
Console.WriteLine(s);
}
}
}
}
ソース
そうです、これはストリームをカバーし、テキストに最適です。ただし、XML を編集しているので、さらに一歩進めることができます。どちらも XML であるため、XDocumentオブジェクトを使用できます (これにより Linq が可能になります)。これにより、元のストリームを読み取り、コピーするノードを変数として保存し、web.config ファイルを開いてノードを追加できます。