A simple triple of a path string, a corresponding FTree node and a boolean to indicate whether the path existed already. This struct is used as an output parameter of function ScanFiles.
Definition at line 155 of file fscanner.hpp.
#include <fscanner.hpp>
Public Field Index: | |
bool | Existed |
FTree::Cursor | Node |
The node in the tree representing this path. | |
lang::system::Path | RealPath |
The 'real' absolute path to the node (no symbolic links included). | |
Public Method Index: | |
ResultsPaths (const lang::system::PathString &realPath, FTree::Cursor node, bool existed) | |
bool Existed |
If true
, the complete path existed already in the target FTree. However, it might have existed as another result path, hence not recursively scanned fashion and now is rescanned with 'higher' scan quality.
Definition at line 159 of file fscanner.hpp.
FTree::Cursor Node |
The node in the tree representing this path.
Definition at line 158 of file fscanner.hpp.
lang::system::Path RealPath |
The 'real' absolute path to the node (no symbolic links included).
Definition at line 157 of file fscanner.hpp.
|
inline |
Constructor.
realPath | Stored in field RealPath. |
node | Stored in field Node. |
existed | Stored in field Existed. |
Definition at line 168 of file fscanner.hpp.