找不到文件?????
ifstream infile;
infile.open("123.txt");
if(!infile.is_open())
AfxMessageBox("找不到文件??");
else
AfxMessageBox("找到文件了!");
如上,我已经把C盘的123.txt文件复制到Debug目录下了,可这样还是找不到文件!
若改成
ifstream infile;
infile.open("c:\\123.txt");
if(!infile.is_open())
AfxMessageBox("找不到文件??");
else
AfxMessageBox("找到文件了!");
这样就可以找到文件,这是为什么??????