0

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/">");
    }
}
4

1 に答える 1

2

を使用して、文字列をファイルに書き込むことができますSystem.IO.File.WriteAllText

于 2012-09-25T08:47:09.597 に答える