public member function
<fstream>

std::fstream::is_open

bool is_open();
bool is_open() const;
Check if a file is open
Returns whether the stream is currently associated to a file.

Streams can be associated to files by a successful call to member open or directly on construction, and disassociated by calling close or on destruction.

The file association of a stream is kept by its internal stream buffer:
Internally, the function calls rdbuf()->is_open()

Parameters

none

Return Value

true if a file is open and associated with this stream object.
false otherwise.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// fstream::is_open
#include <iostream>     // std::cout
#include <fstream>      // std::fstream

int main () {
  std::fstream fs;
  fs.open ("test.txt");
  if (fs.is_open())
  {
    fs << "lorem ipsum";
    std::cout << "Operation successfully performed\n";
    fs.close();
  }
  else
  {
    std::cout << "Error opening file";
  }
  return 0;
}

Possible output:
Operation successfully performed


Data races

Accesses the fstream object.
Concurrent access to the same stream may introduce data races.

Exception safety

Strong guarantee: if an exception is thrown, there are no changes in the stream.

See also