0
我試圖打開文件,一個文本文件。無法打開文件
我已經包含字符串和fstream。
#include <string>
#include <fstream>
這是我在我的程序代碼,但我每次運行程序時,它說:「無法打開文件」。
float unscreen()
{
cout << "Welcome to the screen help area" << endl;
cout << "\n" << endl;
string line;
ifstream myfile("unsreen.txt");
if(myfile.is_open())
{
while(getline(myfile, line))
{
cout << line << '\n';
}
myfile.close();
}
else cout << "unable to open file";
cout << "\n" << endl;
cout << "Press 0 for further action or press 9 to exit." << endl;
是否需要更改文件上的某些內容,我在目錄上找到了該文件。
你確定該文件被命名爲'unsreen.txt'而不是'unscreen.txt'嗎?你的功能名稱似乎表明越晚=) – Cyclonecode
是的,我有先生。 –
我將找到另一個解決方案來打開文件。 –