编写整个html文件

时间:2012-09-25 08:45:19

标签: c# streamwriter

我似乎找不到通过c#编写整个HTML文件的方法,我只能找到一行逐行编写,但有没有办法一次性添加它?抱歉我的英文不好:(。
这就是我现在所拥有的:

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

1 个答案:

答案 0 :(得分:2)

您可以使用System.IO.File.WriteAllText将字符串写入文件。