美文网首页MFC
mfc 读取文件内容

mfc 读取文件内容

作者: 云胡同学 | 来源:发表于2019-08-23 11:35 被阅读0次
    void ReadFile(CString filePath)
    {
        CStdioFile readFile;
        CString readLine;            // 读到的每一行
        BOOL flag = readFile.Open(filePath, CFile::modeRead);
        if (flag == FALSE)
        {
            MessageBox(_T("打开文件失败"));
            return;
        }
        else
        {
            while (readFile.ReadString(readLine)) 
             {
                   TRACE("%s\n", readLine);
             }
        }
        return;
    }
    

    相关文章

      网友评论

        本文标题:mfc 读取文件内容

        本文链接:https://www.haomeiwen.com/subject/wtpzsctx.html