bool is_open();
bool is_open() const;
rdbuf()->is_open()
true if a file is open and associated with this stream object.false otherwise.1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// ofstream::is_open
#include <iostream> // std::cout
#include <fstream> // std::ofstream
int main () {
std::ofstream ofs;
ofs.open ("test.txt");
if (ofs.is_open())
{
ofs << "lorem ipsum";
std::cout << "Output operation successfully performed\n";
ofs.close();
}
else
{
std::cout << "Error opening file";
}
return 0;
}
Output operation successfully performed