MFC 保存运行日志
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MFC 保存运行日志相关的知识,希望对你有一定的参考价值。
void WriteLog(CString Msg) { CTime tm =CTime::GetCurrentTime(); CString str = tm.Format("%Y-%m-%d-%H-%M-%S"); CString sPage = str + " "+Msg+"r"+"n"; CFile logfile (_T("C:\RunLog.log"), CFile::modeNoTruncate|CFile::modeReadWrite|CFile::modeCreate); logfile.SeekToEnd(); logfile.Write(sPage,sPage.GetLength()); logfile.Flush(); logfile.Close(); }
以上是关于MFC 保存运行日志的主要内容,如果未能解决你的问题,请参考以下文章