标签:cfile 读取 std 关闭 message bsp 文件打开 sage cstring
读取txt文件中的内容放如cstring变量中:
CString filePath;
CStdioFile file;
//打开文件
if(!file.Open(filePath,CFile::modeRead))
{
::AfxMessageBox(_T("文件打开失败!"));
return;
}
//读取文件内容
CString strText = _T(" ");
file.ReadString(strText));
//关闭文件
file.Close();
标签:cfile 读取 std 关闭 message bsp 文件打开 sage cstring
原文地址:https://www.cnblogs.com/Grouth-Diary/p/10059033.html