std::experimental::filesystem::recursive_directory_iterator:: operator*, std::experimental::filesystem::recursive_directory_iterator:: operator->
From cppreference.net
<
cpp
|
experimental
|
fs
|
recursive directory iterator
C++
Experimental
| Technical Specification | ||||
| Filesystem library (filesystem TS) | ||||
| Library fundamentals (library fundamentals TS) | ||||
| Library fundamentals 2 (library fundamentals TS v2) | ||||
| Library fundamentals 3 (library fundamentals TS v3) | ||||
| Extensions for parallelism (parallelism TS) | ||||
| Extensions for parallelism 2 (parallelism TS v2) | ||||
| Extensions for concurrency (concurrency TS) | ||||
| Extensions for concurrency 2 (concurrency TS v2) | ||||
| Concepts (concepts TS) | ||||
| Ranges (ranges TS) | ||||
| Reflection (reflection TS) | ||||
| Mathematical special functions (special functions TR) | ||||
| Experimental Non-TS | ||||
| Pattern Matching | ||||
| Linear Algebra | ||||
| std::execution | ||||
| Contracts | ||||
| 2D Graphics |
Filesystem library
| Classes | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| File types | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
recursive_directory_iterator
| Member functions | ||||
|
recursive_directory_iterator::operator*
recursive_directory_iterator::operator->
|
||||
| Non-member functions | ||||
|
const
directory_entry
&
operator
*
(
)
const
;
|
(1) | (파일시스템 TS) |
|
const
directory_entry
*
operator
-
>
(
)
const
;
|
(2) | (파일시스템 TS) |
가리키는 directory_entry 에 접근합니다.
end iterator에 대한
operator*
또는
operator->
연산의 결과는 정의되지 않은 동작입니다.
목차 |
매개변수
(없음)
반환값
1)
이 반복자가 참조하는
directory_entry
의 값.
2)
이 반복자가 참조하는
directory_entry
에 대한 포인터.
예외
구현 정의 예외를 던질 수 있습니다.
참고 항목
|
가리키는 항목에 접근
(
std::experimental::filesystem::directory_iterator
의 public 멤버 함수)
|