I have a small program where i initialize a string and write to a file stream:
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
std::ofstream ofs(file.c_str());
string s="Hello how are you";
if(ofs)
ofs<<s;
if(!ofs)
{
cout<<"Writing to file failed"<<endl;
}
return 0;
}
My diskspace is very less, and the statement "ofs<" fails. So I know that this is an error logically.
The statement "if(!ofs)" does not encounter the above issue, hence I am unable to know why it failed.
Please tell me, by which other options I would be able to know that "ofs< has failed.
Thanks in advance.
I found a solution like
You can also refer to the below links here and thereto check for the correctness.
In principle, if there is a write error,
badbit
should be set. The error will only be set when the stream actually tries to write, however, so because of buffering, it may be set on a later write than when the error occurs, or even after close. And the bit is “sticky”, so once set, it will stay set.Given the above, the usual procedure is to just verify the status of the output after close; when outputting to
std::cout
orstd::cerr
, after the final flush. Something like:When outputting to
std::cout
, replace thef.close()
withstd::cout.flush()
(and of course,if ( ! std::cout )
).AND: this is standard procedure. A program which has a return code of 0 (or
EXIT_SUCCESS
) when there is a write error is incorrect.