我试图将数据结构的内容写入文件,但由于某种原因,file.is_open()返回false。我错过了什么吗?当我用cout进行测试时,打印应该可以正常工作。
std::ofstream file;
file.open(filename, std::ofstream::out | std::ofstream::trunc);
for(int i = 0; i < 1000; ++i) {
Candy* tmp = index[i];
for(; tmp; tmp = tmp->next){
if(file.is_open()){
file << tmp->ID << ";" << tmp->amount << ";" << tmp->location <<
}
else{
std::cout << "error" << std::endl;
}
}
file.close();
}
答案 0 :(得分:1)
您是否拥有写入文件路径的正确权限?文件的路径是否确实存在?
您可以检查错误以找出问题所在。
#include <cerrno>
std::cout << "File error: " << strerror( errno ) << std::endl;
答案 1 :(得分:1)
你的花括号是否不匹配? 您永远不会超出第一个for循环的范围,因此您将在循环的第一次迭代中关闭该文件。