微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

无法在C ++ Windows上打开.txt文件

如何解决无法在C ++ Windows上打开.txt文件

我无法使用.txtstd::ifstream file打开file.open()文件。我想使用间接路径(从.exe文件所在的文件夹-\program_folder中开始),但是使用完整的路径(C:\Users\Rafael\Desktop\C++\program_folder\inputs\test.txt)也无效。

#include <iostram>
#include <vector>
#include <string>
#include <fstream>

int main(){
   char c;
   std::vector<std::string> inputs;
   inputs.push_back("C:\\inputs\\test.txt");
   int a; int b;
   std::ifstream file;
   file.open(inputs[0]);
   if (file.is_open()){
      c = file.get();
      file.close();
   }
   else {std::cout << "\nfail to open file";}
}

作为输出,我得到了失败的消息。

解决方法

"C::\\inputs\\test.txt"不是我必须使用的"inputs\\test.txt"

相对路径

感谢约翰的评论。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。