我用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 alredy有扩展.txt ...如何刷新文本文件或用.htm保存
答案 0 :(得分: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