|
a/src/utils/fstreewalk.h |
|
b/src/utils/fstreewalk.h |
|
... |
|
... |
106 |
/** Set the ignored paths list */
|
106 |
/** Set the ignored paths list */
|
107 |
bool setSkippedPaths(const vector<string> &patterns);
|
107 |
bool setSkippedPaths(const vector<string> &patterns);
|
108 |
|
108 |
|
109 |
/** Test if path/name should be skipped. This can be used independantly of
|
109 |
/** Test if path/name should be skipped. This can be used independantly of
|
110 |
* an actual tree walk */
|
110 |
* an actual tree walk */
|
111 |
bool inSkippedPaths(const string& path, bool ckparents = true);
|
111 |
bool inSkippedPaths(const string& path, bool ckparents = false);
|
112 |
bool inSkippedNames(const string& name);
|
112 |
bool inSkippedNames(const string& name);
|
113 |
|
113 |
|
114 |
private:
|
114 |
private:
|
115 |
Status iwalk(const string &dir, struct stat *stp, FsTreeWalkerCB& cb);
|
115 |
Status iwalk(const string &dir, struct stat *stp, FsTreeWalkerCB& cb);
|
116 |
class Internal;
|
116 |
class Internal;
|