|
a/src/utils/fstreewalk.h |
|
b/src/utils/fstreewalk.h |
|
... |
|
... |
79 |
/** Set the ignored paths list */
|
79 |
/** Set the ignored paths list */
|
80 |
bool setSkippedPaths(const list<string> &pathlist);
|
80 |
bool setSkippedPaths(const list<string> &pathlist);
|
81 |
|
81 |
|
82 |
/** Test if path/name should be skipped. This can be used independantly of
|
82 |
/** Test if path/name should be skipped. This can be used independantly of
|
83 |
* an actual tree walk */
|
83 |
* an actual tree walk */
|
84 |
bool inSkippedPaths(const string& path);
|
84 |
bool inSkippedPaths(const string& path, bool ckparents = true);
|
85 |
bool inSkippedNames(const string& name);
|
85 |
bool inSkippedNames(const string& name);
|
86 |
|
86 |
|
87 |
private:
|
87 |
private:
|
88 |
Status iwalk(const string &dir, struct stat *stp, FsTreeWalkerCB& cb);
|
88 |
Status iwalk(const string &dir, struct stat *stp, FsTreeWalkerCB& cb);
|
89 |
class Internal;
|
89 |
class Internal;
|