std::experimental::filesystem::filesystem_error:: filesystem_error
From cppreference.net
<
cpp
|
experimental
|
fs
|
filesystem error
C++
Filesystem library
| Classes | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| File types | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
filesystem_error
| Member functions | ||||
|
filesystem_error::filesystem_error
|
||||
| Inherited from std::system_error | ||||
|
filesystem_error
(
const
string
&
what_arg, error_code ec
)
;
|
(1) | (파일시스템 TS) |
|
filesystem_error
(
const
string
&
what_arg,
const
path
&
p1, error_code ec
)
;
|
(2) | (파일시스템 TS) |
|
filesystem_error
(
const
string
&
what_arg,
const
path
&
p1,
const
path
&
p2, error_code ec
)
;
|
(3) | (파일시스템 TS) |
새로운 파일 시스템 오류 객체를 생성합니다. 설명 문자열은 what_arg 로 설정되고, 오류 코드는 ec 로 설정되며, 선택적으로 오류가 발생한 작업과 관련된 경로들은 p1 과 p2 로 설정됩니다.
매개변수
| 이 섹션은 불완전합니다 |
참고 항목
| 이 섹션은 불완전합니다 |