Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::filesystem::recursive_directory_iterator

      From cppreference.com
      <cpp‎ |filesystem
       
       
      Filesystem library
      Classes
      Functions
      File types
       
       
      Defined in header<filesystem>
      class recursive_directory_iterator;
      (since C++17)

      recursive_directory_iterator is aLegacyInputIterator that iterates over thedirectory_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 optionfollow_directory_symlink at construction time.

      The special pathnamesdot anddot-dot are skipped.

      If therecursive_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_typestd::filesystem::directory_entry
      difference_typestd::ptrdiff_t
      pointerconststd::filesystem::directory_entry*
      referenceconststd::filesystem::directory_entry&
      iterator_categorystd::input_iterator_tag

      [edit]Member functions

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

      [edit]Non-member functions

      range-based for loop support
      (function)[edit]

      Additionally,operator== andoperator!= are(until C++20)operator== is(since C++20) provided as required byLegacyInputIterator.

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

      [edit]Helper specializations

      template<>

      constexprbool

         ranges::enable_borrowed_range<std::filesystem::recursive_directory_iterator>=true;
      (since C++20)
      template<>

      constexprbool

         ranges::enable_view<std::filesystem::recursive_directory_iterator>=true;
      (since C++20)

      These specializations forrecursive_directory_iterator make it aborrowed_range and aview.

      [edit]Notes

      Arecursive_directory_iterator typically holds a reference-countedpointer (to satisfy shallow-copy semantics ofLegacyInputIterator) to an implementation object, which holds:

      • a container (such asstd::vector) of non-recursivedirectory_iterators that forms the recursion stack,
      • the recursion depth counter (accessible withdepth()),
      • the directory options used at construction (accessible withoptions()),
      • the pending recursion flag (accessible withrecursion_pending(), may be combined with the directory options to save space).

      [edit]Example

      Run this code
      #include <filesystem>#include <fstream>#include <iostream>#include <string>namespace fs= std::filesystem; int main(){std::filesystem::current_path(std::filesystem::temp_directory_path());std::filesystem::create_directories("sandbox/a/b");std::ofstream("sandbox/file1.txt");std::filesystem::create_symlink("a","sandbox/syma"); // Iterate over the std::filesystem::directory_entry elements explicitlyauto entry_length{3UZ};for(const fs::directory_entry& dir_entry:            fs::recursive_directory_iterator("sandbox")){std::cout<< dir_entry<<'\n';if(auto l{dir_entry.path().string().length()}; entry_length< l)            entry_length= l;}std::cout<<std::string(entry_length+2,'-')<<'\n'; // Iterate over the std::filesystem::directory_entry elements using `auto`for(autoconst& dir_entry: fs::recursive_directory_iterator("sandbox"))std::cout<< dir_entry<<'\n'; std::filesystem::remove_all("sandbox");}

      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.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 3480C++20recursive_directory_iterator was neither aborrowed_range nor aviewit is both

      [edit]See also

      an iterator to the contents of the directory
      (class)[edit]
      a directory entry
      (class)[edit]
      options for iterating directory contents
      (enum)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/filesystem/recursive_directory_iterator&oldid=177394"

      [8]ページ先頭

      ©2009-2025 Movatter.jp