Namespaces
Variants
Actions

std::filesystem::path::format

From cppreference.com
< cpp‎ | filesystem‎ | path
 
 
 
 
enum format {

    native_format,
    generic_format,
    auto_format

};
(since C++17)

Determines how string representations of pathnames are interpreted by the constructors of std::filesystem::path that accept strings.

[edit] Constants

NameExplanation
native_formatNative pathname format
generic_formatGeneric pathname format
auto_formatImplementation-defined pathname format, auto-detected where possible

[edit] Notes

On POSIX systems, there is no difference between native and generic format.

[edit] See also

constructs a path
(public member function) [edit]