basic_path::operator/= Operator
Appends a series of elements to the stored file name.
basic_path& operator/=(
const basic_path& Pval
);
basic_path& operator/=(
const string_type& Str
);
basic_path& operator/=(
const value_type *Ptr
);
Parameters
Pval
A basic_path object.Str
A string of the same type as the stored file name.Ptr
A pointer to an array of characters. The character type is the value_type of the stored file name.
Return Value
*this after appending the specified string.
Requirements
Header: filesystem
Namespace: std::tr2::sys