std::basic_ifstream::open

From cppreference.com
< cpp‎ | io‎ | basic ifstream

void open( const char *filename,
           ios_base::openmode mode = ios_base::in );
void open( const std::string &filename,                                  
           ios_base::openmode mode = ios_base::in );
(since C++11)

Opens and associates the file with name filename with the file stream.

Calls setstate(failbit) on failure.

Calls clear() on success. (since C++11)

The first version effectively calls rdbuf()->open(filename, mode | ios_base::in).

The second version effectively calls open(filename.c_str(), mode).

Contents

[edit] Parameters

filename - the name of the file to be opened
mode - specifies stream open mode. It is bitmask type, the following constants are defined:
Constant Explanation
app seek to the end of stream before each write
binary open in binary mode
in open for reading
out open for writing
trunc discard the contents of the stream when opening
ate seek to the end of stream immediately after open

[edit] Return value

(none)

[edit] Example

[edit] See also

checks if the stream has an associated file
(public member function)
closes the associated file
(public member function)
opens a file and configures it as the associated character sequence
(public member function of std::basic_filebuf)