std::filesystem::path::c_str,std::filesystem::path::native, (3) Linux Manual Page
std::filesystem::path::c_str,std::filesystem::path::native, – std::filesystem::path::c_str,std::filesystem::path::native, Synopsis const value_type *c_str() const noexcept; (1)(since C++ 17) const string_type &native() const noexcept; (2)(since C++ 17) operator string_type() const; (3)(since C++ 17) Accesses the native path name as a character string. 1) Equivalent to native().c_str(). 2) Returns the native-format representation of the pathname by reference. 3) Returns the native-format representation of the pathname by…
