CFile以追加的的方式写文件

CFile是MFC中的一个类,可以方便的读写文件。如果读写一行的话建议使用CStdioFile类的ReadString()和WriteString()。这些类要实现追加的方式写文件的话。要设定参数和文件指针的位置。

具体方法如下:

CFile myfile;

 if(!myfile.Open(Filename,CFile::modeNoTruncate|CFile::modeWrite)==NULL)

{

AfxMessageBox("can not open the file");

}

myfile.SeekToEnd();
//这是就可以往里写了。

myfile.Write(&data,size);

你可能感兴趣的:(File,null,mfc)