std::filesystem::path::format
来自 cppreference.com
< cpp | filesystem | path
enum format { native_format, |
(自 C++17 起) | |
确定如何解释接受字符串的 std::filesystem::path 构造函数中路径名的字符串表示。
[编辑] 常量
名称 | 解释 |
native_format
|
本机路径名格式 |
generic_format
|
通用路径名格式 |
auto_format
|
实现定义的路径名格式,在可能的情况下自动检测 |
[编辑] 注释
在 POSIX 系统上,本机格式和通用格式之间没有区别。
[编辑] 另请参阅
构造一个 path (公共成员函数) |