如何解决无法在C ++ Windows上打开.txt文件
我无法使用.txt
和std::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 举报,一经查实,本站将立刻删除。