AWS SDK for C++AWS SDK for C++ Version 1.11.791 |
#include <FileSystem.h>
Wrapper around directory. Currently provides a Depth-first and Breadth-first traversal of the provided path. This is most likely the class you are looking for.
Definition at line 175 of file FileSystem.h.
Create a directory object for use with traversal using the provided path.
Computes the difference between two directory trees based on their relative paths. File contents are not taken into account, only the tree structure.
Returns the diff between the two trees where the key is the relative path. The Directory entry will contain the absolute path and file size.
If the object is valid for use: true. Otherwise: false.
Returns true if the Directory tree structure at path matches. Otherwise false.
Returns true if the Directory Tree structures match. Otherwise false.
Performs a breadth-first traversal of the directory tree. Upon encountering an entry, visitor will be invoked.
false
Performs a depth-first traversal of the directory tree. Upon encountering an entry, visitor will be invoked. If postOrder is true, a pre-order traversal will be used. otherwise pre-order will be used.