std::experimental::filesystem::directory_entry:: operator==,!=,<,<=,>,>=
From cppreference.net
<
cpp
|
experimental
|
fs
|
directory entry
|
bool
operator
==
(
const
directory_entry
&
rhs
)
const
;
|
(1) | (파일시스템 TS) |
|
bool
operator
!
=
(
const
directory_entry
&
rhs
)
const
;
|
(2) | (파일시스템 TS) |
|
bool
operator
<
(
const
directory_entry
&
rhs
)
const
;
|
(3) | (파일시스템 TS) |
|
bool
operator
<=
(
const
directory_entry
&
rhs
)
const
;
|
(4) | (파일시스템 TS) |
|
bool
operator
>
(
const
directory_entry
&
rhs
)
const
;
|
(5) | (파일시스템 TS) |
|
bool
operator
>=
(
const
directory_entry
&
rhs
)
const
;
|
(6) | (파일시스템 TS) |
경로를 디렉토리 엔트리 rhs 와 비교합니다.
목차 |
매개변수
| rhs | - | 비교할 directory_entry |
반환값
1)
true
만약
path
(
)
==
rhs.
path
(
)
이면,
false
그렇지 않으면.
2)
true
만약
path
(
)
!
=
rhs.
path
(
)
,
false
그렇지 않은 경우.
3)
true
만약
path
(
)
<
rhs.
path
(
)
인 경우,
false
그렇지 않은 경우.
4)
true
만약
path
(
)
<=
rhs.
path
(
)
인 경우,
false
그렇지 않은 경우.
5)
true
만약
path
(
)
>
rhs.
path
(
)
인 경우,
false
그렇지 않은 경우.
6)
true
만약
path
(
)
>=
rhs.
path
(
)
인 경우,
false
그렇지 않은 경우.
예외
noexcept
명세:
noexcept
참고 항목
|
엔트리가 참조하는 경로를 반환합니다
(public member function) |