求助CFile打开文件问题
//代码片段如下://打开文件
bool File_manager::Open_file(CString path)
{
CFile info_file;
CString str_buffer;
CFileException cfe;
//AfxMessageBox(path);
if(info_file.Open(path,CFile::shareDenyNone,&cfe) == 0)
{
return FALSE;
}
CArchive ar(&info_file,CArchive::load);
ar>>str_buffer;
//info_file.Read(str_buffer,2);
AfxMessageBox(str_buffer);
ar.Close();
info_file.Close();
return TRUE;
}
第一次用vc++打开文件,水平有限,
编译通过,打开某个txt文件时出错信息为:
“试图越过其尾端对一个未知名的文件进行读写”
请高手解答,在线等待
不甚感激!!