basic_filebuf::is_open
Označuje, zda je soubor otevřen.
bool is_open( ) const;
Vrácená hodnota
true Pokud ukazatel souboru není nulový ukazatel.
Příklad
// basic_filebuf_is_open.cpp
// compile with: /EHsc
#include <fstream>
#include <iostream>
int main( )
{
using namespace std;
ifstream file;
cout << boolalpha << file.rdbuf( )->is_open( ) << endl;
file.open( "basic_filebuf_is_open.cpp" );
cout << file.rdbuf( )->is_open( ) << endl;
}
Požadavky
Záhlaví:<fstream>
Obor názvů: std