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) |