我是靠谱客的博主 怕孤独未来,最近开发中收集的这篇文章主要介绍VC++ CStdioFile文本文件读写,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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文本文件读写所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(58)

评论列表共有 0 条评论

立即
投稿
返回
顶部