std::experimental::filesystem::operator/(std::experimental::filesystem::path)
From cppreference.com
< cpp | experimental | fs | path
Defined in header <experimental/filesystem>
|
||
path operator/( const path& lhs, const path& rhs ); |
(filesystem TS) | |
Concatenates two path. Effectively returns path(lhs) /= rhs.
Contents |
[edit] Parameters
lhs, rhs | - | paths to concatenate |
[edit] Return value
The result of path concatenation.
[edit] Exceptions
noexcept specification:
noexcept
[edit] Example
This section is incomplete Reason: no example |
[edit] See also
appends elements to the path (public member function) |