[#bsl-operator_slash_eq] = xref:bsl.adoc[bsl]::operator/= :relfileprefix: ../ :mrdocs: Append the specified `string` to the specified `path` using the preferred directory separator if appropriate. == Synopsis Declared in `<bsl_filesystem.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class t_PATH, class t_STRING, int = 0> requires std::conjunction_v<std::is_base_of<filesystem::path, t_PATH>, std::is_base_of<bsl::string, t_STRING> > std::filesystem::path& operator/=( t_PATH& path, t_STRING const& string); ---- == Return Value reference to `path` == Parameters [cols="1,4"] |=== | Name| Description | *path* | path to which the string is appended | *string* | string to append to the path |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#