std::basic_ofstream<CharT,Traits>::open
From cppreference.com
< cpp | io | basic ofstream
C++
Input/output library
| I/O manipulators | ||||
| Print functions (C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++20) | ||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
(C++98/26*) | ||||
| Synchronized Output | ||||
(C++20) | ||||
| Types | ||||
| Error category interface | ||||
(C++11) | ||||
(C++11) |
std::basic_ofstream
| Member functions | ||||
(C++11) | ||||
(C++11) | ||||
| File operations | ||||
basic_ofstream::open | ||||
| Non-member functions | ||||
(C++11) |
| void open( const char* filename, = std::ios_base::out ); |
(1) | |
| void open( const std::filesystem::path::value_type* filename, = std::ios_base::out ); |
(2) | (since C++17) |
| void open( const std::string& filename, = std::ios_base::out ); |
(3) | (since C++11) |
| void open( const std::filesystem::path& filename, = std::ios_base::out ); |
(4) | (since C++17) |
Opens and associates the file with name filename with the file stream.
Calls clear() on success. Calls setstate(failbit) on failure.
1,2) Effectively calls rdbuf()->open(filename, mode | ios_base::out) (see std::basic_filebuf::open for the details on the effects of that call). Overload (2) is only provided if
std::filesystem::path::value_type is not char.(since C++17)3,4) Effectively calls (1,2) as if by open(filename.c_str(), mode).
Contents |
[edit] Parameters
| filename | - | the name of the file to be opened | ||||||||||||||||
| mode | - | specifies stream open mode. It is a BitmaskType, the following constants are defined:
|
[edit] Example
| This section is incomplete Reason: no example |
[edit] Defect reports
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 22 | C++98 | it was unclear how error state changes upon a successful open | the error state is unchanged |
| LWG 409 | C++98 | the error state was unchanged upon a successful open | it is cleared[1] |
- ↑ The resolution of LWG issue #22 is overridden.
[edit] See also
| checks if the stream has an associated file (public member function) [edit] | |
| closes the associated file (public member function) [edit] | |
| opens a file and configures it as the associated character sequence (public member function of std::basic_filebuf<CharT,Traits>) [edit]
|