0

我用 Html 标记编写文本文件 Demo.txt 我已将其另存为 html(每次我再次编写时)
这是我的代码...

System.IO.File.WriteAllText(@"D:\Demo.txt", string.Empty);
        StreamWriter file2 = new StreamWriter(@"D:\Demo.txt", true);
        int j = 0;
        file2.WriteLine("<html><table  border='1'>");
        file2.WriteLine("<tr bgcolor='#99CCFF' >");
        file2.WriteLine("</html>");

如何将其保存为 .htm 已经具有扩展名 .txt...如何刷新文本文件或将其保存为 .htm

4

1 回答 1

0

在写入文件之前或之后有条件地复制文件。

if(System.IO.File.Exists("d:\Demo.txt"))    
    System.IO.File.Copy("d:\Demo.txt", "d:\Demo.htm", true);

http://msdn.microsoft.com/en-us/library/system.io.file.copy.aspx

于 2013-10-28T11:38:43.003 回答