命名空间
变体
操作

std::basic_ifstream<CharT,Traits>::is_open

来自 cppreference.com
< cpp‎ | io‎ | basic ifstream
bool is_open() const;

检查文件流是否关联了文件。

实际上调用 rdbuf()->is_open()

内容

[编辑] 参数

(无)

[编辑] 返回值

true 如果文件流关联了文件,否则为 false

[编辑] 示例

#include <fstream>
#include <iostream>
#include <string>
 
// this file is called main.cpp
 
bool file_exists(const std::string& str)
{
    std::ifstream fs(str);
    return fs.is_open();
}
 
int main()
{
    std::boolalpha(std::cout);
    std::cout << file_exists("main.cpp")  << '\n'
              << file_exists("strange_file") << '\n';
}

可能的输出

true
false

[编辑] 缺陷报告

以下更改行为的缺陷报告被追溯应用到先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 365 C++98 is_open 未声明为 const 限定符 声明为 const 限定符

[编辑] 另请参阅

打开文件并将其与流关联
(公有成员函数) [编辑]
关闭关联的文件
(公有成员函数) [编辑]