概述
被一个bug纠缠了两天,今天总算找到问题在哪里了:
//创建学生端存放考试结果文件夹
CString strFolderPath = "C://";
strFolderPath += _T("学生文件夹");
if (!CreateDirectory(strFolderPath, NULL))
{
AfxMessageBox("创建文件夹失败");
return;
}
CString csRscFile = strFolderPath + "//";
csRscFile += _T("学生一.txt");
if (!stuFile.Open(csRscFile,CStdioFile::modeCreate|CStdioFile::modeWrite|CStdioFile::typeText))
{
AfxMessageBox("打开失败");
return;
}
int m_progressPos = 20;
CString str;
str.Format("%d",m_progressPos);
stuFile.WriteString("学生分数:"+str+"/n");
stuFile.Close();
两个应该注意的地方:
1、int转换CString类型 :str.Format("%d",m_progressPos); 起初一直都以为是str.Format("%s",m_progressPos); 这个问题放了两天一直没有发现,唉唉,以后在用函数之前一定要先看清楚用法!泪奔...
扩展:
CString转换int类型:CString str; atoi(str);
2、CStdioFile写文件之后一定要使用Close函数关闭该文件,否则写文件之后,程序崩溃。
最后
以上就是拉长书本为你收集整理的CStdioFile写文件中出现的问题的全部内容,希望文章能够帮你解决CStdioFile写文件中出现的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复