How to add new line into txt file

后端 未结 4 2019
执笔经年
执笔经年 2020-11-28 23:47

I\'d like to add new line with text to my date.txt file, but instead of adding it into existing date.txt, app is creating new date.txt file..

TextWriter tw =         


        
4条回答
  •  眼角桃花
    2020-11-29 00:48

    You could do it easily using

    File.AppendAllText("date.txt", DateTime.Now.ToString());
    

    If you need newline

    File.AppendAllText("date.txt", 
                       DateTime.Now.ToString() + Environment.NewLine);
    

    Anyway if you need your code do this:

    TextWriter tw = new StreamWriter("date.txt", true);
    

    with second parameter telling to append to file.
    Check here StreamWriter syntax.

提交回复
热议问题