std::basic_ifstream<CharT,Traits>::open (3) - Linux Manuals
std::basic_ifstream<CharT,Traits>::open: std::basic_ifstream<CharT,Traits>::open
Command to display std::basic_ifstream<CharT,Traits>::open
manual in Linux: $ man 3 std::basic_ifstream<CharT,Traits>::open
NAME
std::basic_ifstream<CharT,Traits>::open - std::basic_ifstream<CharT,Traits>::open
Synopsis
void open( const char *filename, (1)
ios_base::openmode mode = ios_base::in );
void open( const std::filesystem::path::value_type *filename, (2) (since C++17)
ios_base::openmode mode = ios_base::in );
void open( const std::string &filename, (3) (since C++11)
ios_base::openmode mode = ios_base::in );
void open( const std::filesystem::path &filename, (4) (since C++17)
ios_base::openmode mode = ios_base::in );
Opens and associates the file with name filename with the file stream.
Calls setstate(failbit) on failure.
Calls clear() on success. (since C++11)
1-2) Effectively calls rdbuf()->open(filename, mode | ios_base::in). (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).
Parameters
filename - the name of the file to be opened
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
mode - 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
Return value
(none)
Example
This section is incomplete
Reason: no example
See also
checks if the stream has an associated file
is_open (public member function)
closes the associated file
close (public member function)
opens a file and configures it as the associated character sequence
open (public member function of std::basic_filebuf<CharT,Traits>)
Pages related to std::basic_ifstream<CharT,Traits>::open
- std::basic_ifstream<CharT,Traits>::operator= (3) - std::basic_ifstream<CharT,Traits>::operator=
- std::basic_ifstream<CharT,Traits>::basic_ifstream (3) - std::basic_ifstream<CharT,Traits>::basic_ifstream
- std::basic_ifstream<CharT,Traits>::close (3) - std::basic_ifstream<CharT,Traits>::close
- std::basic_ifstream<CharT,Traits>::is_open (3) - std::basic_ifstream<CharT,Traits>::is_open
- std::basic_ifstream<CharT,Traits>::rdbuf (3) - std::basic_ifstream<CharT,Traits>::rdbuf
- std::basic_ifstream<CharT,Traits>::swap (3) - std::basic_ifstream<CharT,Traits>::swap
- std::basic_ifstream (3) - std::basic_ifstream
- std::basic_ios (3) - std::basic_ios
- std::basic_ios<CharT,Traits>::bad (3) - std::basic_ios<CharT,Traits>::bad
- std::basic_ios<CharT,Traits>::basic_ios (3) - std::basic_ios<CharT,Traits>::basic_ios
- std::basic_ios<CharT,Traits>::clear (3) - std::basic_ios<CharT,Traits>::clear
- std::basic_ios<CharT,Traits>::copyfmt (3) - std::basic_ios<CharT,Traits>::copyfmt
- std::basic_ios<CharT,Traits>::eof (3) - std::basic_ios<CharT,Traits>::eof
- std::basic_ios<CharT,Traits>::exceptions (3) - std::basic_ios<CharT,Traits>::exceptions
- std::basic_ios<CharT,Traits>::fail (3) - std::basic_ios<CharT,Traits>::fail
- std::basic_ios<CharT,Traits>::fill (3) - std::basic_ios<CharT,Traits>::fill