std::experimental::filesystem::operator/(std::experimental::filesystem::path)

From cppreference.com
< cpp‎ | experimental‎ | fs‎ | path
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Concepts (concepts TS)
Extensions for concurrency (concurrency TS)
Special mathematical functions (special math TR)
 
 
 
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

[edit] See also

appends elements to the path
(public member function)