How to add new line into txt file

后端 未结 4 2027
执笔经年
执笔经年 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:24

    No new line:

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

    and then to get a new line after OK:

    File.AppendAllText("file.txt", string.Format("{0}{1}", "OK", Environment.NewLine));
    

提交回复
热议问题