如何将日志写入大小为64KB的文件(以允许记事本读取)。一旦文件达到64KB,则应继续创建另一个,另一个......
文件名可以自动生成。

我尝试了以下代码

static int iCounter=1;
CString temp;
      static CStdioFile f(L"c:\\Log1.txt", CFile::modeWrite | CFile::modeRead |  CFile::modeCreate | CFile::modeNoTruncate);

 int nlength = (int)f.GetLength();
 if(nlength>(nMaxFileSize*1024))
 {
     //need to create a new file
     f.Close();
     iCounter++;
     temp.Format(_T("%s%d%s"), "c:\\Log",iCounter, ".txt");
     f.Open(temp,CFile::modeWrite | CFile::modeRead | CFile::modeCreate | CFile::modeNoTruncate);

 }
 f.SeekToEnd();
 f.WriteString(str);
 f.WriteString(L"\r\n");

我正在寻找更好的选择。

最佳答案

编写一个接受日志字符串的包装器类,将其写入当前日志文件,并保留总字符串长度计数器。

当达到阈值时,关闭当前日志文件,创建一个新的日志文件,然后重置计数器。

您可以使用编号名称方案,例如log00001.txt, log 00002.txt, ...

10-04 10:13