c# 如何实现把当前时间写入文本文件

需要具体一点的,例如把当前时间写入c:尀尀123.txt
2024-11-19 18:46:45
推荐回答(3个)
回答1:

string strPath = Server.MapPath("/") + "log.txt";
StreamWriter sw = File.AppendText(strPath);
//开始写入
sw.WriteLine(" 当前时间:"+DateTime.Now.ToString());
//清理当前编码器的缓冲区,并将所有缓存数据写入基础流
sw.Flush();
sw.Close();

回答2:

StreamWriter sw =new StreamWriter(@“C:\\123.txt”,FileOpen.OpenOrCreate,FileAccess.ReadAndWrite);
//开始写入
sw.WriteLine(" 当前时间:"+DateTime.Now.ToString());
//清理当前编码器的缓冲区,并将所有缓存数据写入基础流
sw.Flush();
sw.Close();
不好使找我!!!

回答3:

getdate()