HTML ファイル全体を c# で書き込む方法が見つからないようです。1 行ずつ書き込む方法しか見つかりませんが、一度にすべて追加する方法はありますか? 下手な英語で申し訳ありません:(.
これは私が今持っているものです:
string path = @"c:\MyTest.html";
// 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(@"<script type="text/javascript/">");
}
}