std::filesystem::path::assign

std::filesystem::path::assign

template< class Source >
path& assign( const Source& source );
(1) (since C++17)
template< class InputIt >
path& assign( InputIt first, InputIt last );
(2) (since C++17)

Replaces the contents to the path object by a new pathname constructed from the given character sequence.

1) Assigns the pathname identified by the character range source.
2) Assigns the pathname identified by character range [first, last).

Parameters

source - a character range to use, represented as std::string, std::string_view, pointer to a null-terminated multibyte string, or as an input iterator with char value type that points to a null-terminated multibyte string
first, last - a character range to use
Type requirements
-InputIt must meet the requirements of InputIterator.
-The value type of InputIt must be one of the encoded character types (char, wchar_t, char16_t and char32_t)

|}

Return value

*this.

Exceptions

See also

assigns another path
(public member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/filesystem/path/assign

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部