gpt4 book ai didi

c++ - 打开文件 C++ 时出现问题

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:37:24 26 4
gpt4 key购买 nike

必须是一个简单的答案,但我不知所措,这是返回错误的代码。我试过使用和不使用起始斜线。

我不会知道完整路径,我希望它是相对于 exe 的,也就是相对路径。我尝试转义斜杠。

我的问题是当文件存在时我得到“打开文件时出错”。为什么会失败?

  ifstream myFile("/LOGS/ex090716.txt");
if (myFile.fail()) {cout << "Error opening file";}
else
{
cout << "File opened... \n";
//string line;
//while( getline(myFile, line) ) {
// cmatch results;
// regex rx("(p|q)(=)([^ %]*)");
// regex_search(line.c_str(), results, rx);
// string referringWords = results[3];
//}
myFile.close();
}

谢谢

最佳答案

你的问题到底是什么?!如果您想测试文件是否打开,请使用 is_open()

关于c++ - 打开文件 C++ 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1377078/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com