我现在要补充与案文的新行文。 txt文档,但不将其添加到现有日期。 t,正在创造新的日期。 txt file.
TextWriter tw = new StreamWriter("date.txt");
// write a line of text to the file
tw.WriteLine(DateTime.Now);
// close the stream
tw.Close();
我愿开放txt文档,添加一些案文,将其关闭,然后点击:公开日期.txt,增加案文,并再次关闭。
因此可以做到:
Button Pressed: txt open -> supplemented current time, 然后关闭。 另有一家纽特公司在同一个行文中刊登了“K”或“NOT OK”,随后又将其关闭。
So my txt file will look like that:
2011-11-24 10:00:00 OK
2011-11-25 11:00:00 NOT OK
如何做到这一点? 感谢!