std::basic_filebuf::is_open

std::basic_filebuf::is_open

bool is_open() const;

Returns true if the most recent call to open() succeeded and there has been no call to close() since then.

Parameters

(none).

Return value

true if the associated file is open, false otherwise.

Notes

This function is typically called by std::basic_fstream::is_open().

Example

#include <fstream>
#include <iostream>
 
int main()
{
    std::ifstream fs("test.txt");
    std::filebuf fb;
    fb.open("test.txt", std::ios_base::in);
    std::cout << std::boolalpha
              << "direct call: " << fb.is_open() << '\n'
              << "through streambuf: " << fs.rdbuf()->is_open() << '\n'
              << "through fstream: " << fs.is_open() << '\n';
}

Output:

direct call: true
through streambuf: true
through fstream: true

See also

opens a file and configures it as the associated character sequence
(public member function)
flushes the put area buffer and closes the associated file
(public member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/io/basic_filebuf/is_open

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部