Namespaces
Variants

std::filesystem::recursive_directory_iterator:: recursion_pending

From cppreference.net
bool recursion_pending ( ) const ;
(C++17부터)

다음 증가가 현재 * this 가 참조하는 디렉토리를 순회하게 될 경우 true 를 반환합니다.

이 함수는 true 를 생성 직후 또는 증가 후 즉시 반환합니다. 재귀는 disable_recursion_pending() 를 통해 비활성화할 수 있습니다.

목차

매개변수

(없음)

반환값

true 다음 증가 연산이 현재 참조 중인 디렉토리로 순회할 경우, false 그렇지 않은 경우.

예외

아무것도 던지지 않습니다.

예제