std::basic_ifstream::open
From Cppreference
< cpp | io | basic ifstream
C++ Standard Library | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Input/output library | ||||||||||||||||||||||||||||||||||||||||||||||||||||
std::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 ); |
(C++11 feature) | |
Opens and associates file with the file stream. Calls clear() on success or setstate(failbit) on failure.
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:
|
[edit] Return value
(none)
[edit] Example
This section is incomplete |
[edit] See also
|
checks if the stream has an associated file (public member function) |
|
|
closes the associated file (public member function) |