[#fs-path-operator_slash_eq-0c] = xref:fs.adoc[fs]::xref:fs/path.adoc[path]::operator/= :relfileprefix: ../../ :mrdocs: Division assignment operators == Synopses Declared in `<util/fs.h>` Deleted to forbid appending a std::string, which decodes locale‐dependently on Windows. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:fs/path.adoc[path]& xref:fs/path/operator_slash_eq-0f6.adoc[operator/=](std::string s) = delete; ---- [.small]#xref:fs/path/operator_slash_eq-0f6.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[__visibility__, __exclude_from_explicit_instantiation__, __abi_tag__]] path& xref:fs/path/operator_slash_eq-08.adoc[operator/=](path const& __p); ---- [.small]#xref:fs/path/operator_slash_eq-08.adoc[_» more..._]# Append a std::filesystem::path component with a directory separator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:fs/path.adoc[path]& xref:fs/path/operator_slash_eq-0f7.adoc[operator/=](std::filesystem::path const& path); ---- [.small]#xref:fs/path/operator_slash_eq-0f7.adoc[_» more..._]# Append a C string literal component with a directory separator. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:fs/path.adoc[path]& xref:fs/path/operator_slash_eq-03.adoc[operator/=](char const* c); ---- [.small]#xref:fs/path/operator_slash_eq-03.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class _Source> [[__visibility__, __exclude_from_explicit_instantiation__, __abi_tag__]] path& xref:fs/path/operator_slash_eq-02.adoc[operator/=](_Source const& __src); ---- [.small]#xref:fs/path/operator_slash_eq-02.adoc[_» more..._]# == Return Value A reference to this object. == Parameters [cols="1,4"] |=== | Name| Description | *s* | The string that would be appended. | *path* | The path component to append. | *c* | The null‐terminated string component to append. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#