[#bsl-operator_slash-0e] = xref:bsl.adoc[bsl]::operator/ :relfileprefix: ../ :mrdocs: Division operators == Synopses Declared in `<bsl_filesystem.h>` Return the concatenation of the specified `path` and the specified `string` using the preferred directory separator if appropriate. [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 xref:bsl/operator_slash-04.adoc[operator/]( t_PATH path, t_STRING const& string); ---- [.small]#xref:bsl/operator_slash-04.adoc[_» more..._]# Return the concatenation of the specified `string` and the specified `path` using the preferred directory separator if appropriate. [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 xref:bsl/operator_slash-0b.adoc[operator/]( t_STRING const& string, t_PATH const& path); ---- [.small]#xref:bsl/operator_slash-0b.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#