operator/(std::fs::path)
From cppreference.com
< cpp | experimental | fs | path
Defined in header
<fs>
|
||
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
(none)
[edit] See also
appends elements to the path (public member function) |