概述
1、文件的创建
CStdioFile stdTxtFile;
CFileException fileException;
if (!stdCsvFile.Open(stdTxtFile, CFile::modeCreate | CFile::typeText | CFile::modeReadWrite, NULL, &fileException))
return ;
2、文件的打开
CStdioFile stdTxtFile;
CFileException fileException;
if (!stdCsvFile.Open(stdTxtFile, CFile::typeText | CFile::modeReadWrite, NULL, &fileException))
return ;
3、文件的读写
// 读方式
CString strText;
while (stdTxtFile.ReadString(strText))
{
...
}
// 写方式
stdTxtFile.Seek(0,CFile::end);// 将位置移到文件末尾,追加记录
file.WriteString(strText);
注意:strText的末尾添加rn会导致写出来的文档修改后出现格式错乱,只能写n,如果不写n,写入的文本将不会自动换行
4、文件的关闭
stdTxtFile.Close();
最后
以上就是怕孤独未来为你收集整理的VC++ CStdioFile文本文件读写的全部内容,希望文章能够帮你解决VC++ CStdioFile文本文件读写所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复