std::filesystem::path:: format
From cppreference.net
<
cpp
|
filesystem
|
path
C++
std::filesystem::path
| Member types | ||||||||||||||||||||||||||
| Member constants | ||||||||||||||||||||||||||
|
path::native_format
path::generic_format
path::auto_format
|
||||||||||||||||||||||||||
| Member functions | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
| Path decomposition | ||||||||||||||||||||||||||
| Non-member functions | ||||||||||||||||||||||||||
|
||||||||||||||||||||||||||
| Helper classes | ||||||||||||||||||||||||||
|
enum
format
{
native_format,
|
(C++17以降) | |
std::filesystem::path のコンストラクタが文字列を受け取る際に、パス名の文字列表現がどのように解釈されるかを決定します。
定数
| 名前 | 説明 |
native_format
|
ネイティブパス名形式 |
generic_format
|
汎用パス名形式 |
auto_format
|
実装定義パス名形式、可能な場合は自動検出 |
注記
POSIXシステムでは、ネイティブ形式とジェネリック形式の間に違いはありません。
関連項目
path
を構築する
(public member function) |