|
Arduino FatFS
|
Iterator for recursive directory tree traversal. More...
#include <filesystem.h>
Public Member Functions | |
| recursive_directory_iterator (const std::string &rootPath) | |
| recursive_directory_iterator & | operator++ () |
| directory_entry | operator* () const |
| bool | operator!= (const recursive_directory_iterator &other) const |
Static Public Member Functions | |
| static recursive_directory_iterator | end () |
Iterator for recursive directory tree traversal.
Automatically traverses all subdirectories in depth-first order. Maintains a stack of open directory handles to track the current position in the tree. Uses FatFs f_opendir/f_readdir API directly.