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

拡張子.txtを持つ.htmとして保存する方法...テキストファイルを更新する方法または.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 に答える