std::filesystem::recursive_directory_iterator - cppreference.com (original) (raw)

std::filesystem::recursive_directory_iterator

| | | | | ------------------------------------- | | ------------- | | class recursive_directory_iterator; | | (since C++17) |

recursive_directory_iterator is a LegacyInputIterator that iterates over the directory_entry elements of a directory, and, recursively, over the entries of all subdirectories. The iteration order is unspecified, except that each directory entry is visited only once.

By default, symlinks are not followed, but this can be enabled by specifying the directory option follow_directory_symlink at construction time.

The special pathnames dot and dot-dot are skipped.

If the recursive_directory_iterator reports an error or is advanced past the last directory entry of the top-level directory, it becomes equal to the default-constructed iterator, also known as the end iterator. Two end iterators are always equal, dereferencing or incrementing the end iterator is undefined behavior.

If a file or a directory is deleted or added to the directory tree after the recursive directory iterator has been created, it is unspecified whether the change would be observed through the iterator.

If the directory structure contains cycles, the end iterator may be unreachable.

Contents

[edit] Member types

Member type Definition
value_type std::filesystem::directory_entry
difference_type std::ptrdiff_t
pointer const std::filesystem::directory_entry*
reference const std::filesystem::directory_entry&
iterator_category std::input_iterator_tag

[edit] Member functions

(constructor) constructs a recursive directory iterator (public member function) [edit]
(destructor) default destructor (public member function) [edit]
Observers
operator*operator-> accesses the pointed-to entry (public member function) [edit]
options returns the currently active options that affect the iteration (public member function) [edit]
depth returns the current recursion depth (public member function) [edit]
recursion_pending checks whether the recursion is disabled for the current directory (public member function) [edit]
Modifiers
operator= assigns contents (public member function) [edit]
incrementoperator++ advances to the next entry (public member function) [edit]
pop moves the iterator one level up in the directory hierarchy (public member function) [edit]
disable_recursion_pending disables recursion until the next increment (public member function) [edit]

[edit] Non-member functions

Additionally, operator== and operator!= are(until C++20)operator== is(since C++20) provided as required by LegacyInputIterator.

It is unspecified whether operator!= is provided because it can be synthesized from operator==, and(since C++20) whether an equality operator is a member or non-member.

[edit] Helper specializations

These specializations for recursive_directory_iterator make it a borrowed_range and a view.

[edit] Notes

A recursive_directory_iterator typically holds a reference-counted pointer (to satisfy shallow-copy semantics of LegacyInputIterator) to an implementation object, which holds:

[edit] Example

Possible output:

"sandbox/syma" "sandbox/file1.txt" "sandbox/a" "sandbox/a/b"

"sandbox/syma" "sandbox/file1.txt" "sandbox/a" "sandbox/a/b"

[edit] Defect reports

The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

DR Applied to Behavior as published Correct behavior
LWG 3480 C++20 recursive_directory_iterator was neither a borrowed_range nor a view it is both

[edit] See also