WPILibC++
2019.1.1-beta-1-21-gfb557f4
|
directory_iterator - Iterates through the entries in path. More...
#include <FileSystem.h>
Public Member Functions | |
directory_iterator (const Twine &path, std::error_code &ec, bool follow_symlinks=true) | |
directory_iterator (const directory_entry &de, std::error_code &ec, bool follow_symlinks=true) | |
directory_iterator ()=default | |
Construct end iterator. | |
directory_iterator & | increment (std::error_code &ec) |
const directory_entry & | operator* () const |
const directory_entry * | operator-> () const |
bool | operator== (const directory_iterator &RHS) const |
bool | operator!= (const directory_iterator &RHS) const |
directory_iterator - Iterates through the entries in path.
There is no operator++ because we need an error_code. If it's really needed we can make it call report_fatal_error on error.