[#boost-urls-url_base-set_path_absolute] = xref:boost/urls/url_base/set_path_absolute.adoc[boost::urls::url_base::set_path_absolute] :relfileprefix: ../../../ :mrdocs: Set if the path is absolute == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/url_base.hpp#L1704[boost/url/url_base.hpp]>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool set_path_absolute(bool absolute); ---- == Description This function adjusts the path to make it absolute or not, depending on the parameter. [NOTE] If an authority is present, the path is always absolute. In this case, the function has no effect. == Example [,cpp] ---- url u( "path/to/file.txt" ); assert( u.set_path_absolute( true ) ); assert( u.buffer() == "/path/to/file.txt" ); ---- == Postconditions [,cpp] ---- this->is_path_absolute() == true && this->encoded_path().front() == '/' ---- == Complexity Linear in `this‐>size()`. == BNF [,cpp] ---- path = path-abempty ; begins with "/" or is empty / path-absolute ; begins with "/" but not "//" / path-noscheme ; begins with a non-colon segment / path-rootless ; begins with a segment / path-empty ; zero characters path-abempty = *( "/" segment ) path-absolute = "/" [ segment-nz *( "/" segment ) ] path-noscheme = segment-nz-nc *( "/" segment ) path-rootless = segment-nz *( "/" segment ) path-empty = 0 ---- == Specification * https://datatracker.ietf.org/doc/html/rfc3986#section-3.3[] == Return Value true on success. == Parameters [cols=2] |=== | Name | Description | *absolute* | If `true`, the path is made absolute. |=== == See Also xref:boost/urls/url_base/encoded_segments-0a.adoc[`encoded_segments`], xref:boost/urls/url_base/segments-07.adoc[`segments`], xref:boost/urls/url_base/set_encoded_path.adoc[`set_encoded_path`], xref:boost/urls/url_base/set_path.adoc[`set_path`]. [.small]#Created with https://www.mrdocs.com[MrDocs]#