std::filesystem::path::format

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

# Declarations

enum format {
native_format,
generic_format,
auto_format
};

(since C++17)

# Notes

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

# See also