| 190 | } |
| 191 | |
| 192 | std::string InotifyTree::getParentPath(const std::string &filePath) { |
| 193 | std::string directory; |
| 194 | uint32_t location = filePath.find_last_of("/"); |
| 195 | directory = filePath.substr(0, location); |
| 196 | return directory; |
| 197 | } |
| 198 | |
| 199 | void InotifyTree::updateExcludedPaths(const std::vector<std::string> &excludedPaths) { |
| 200 | std::vector<std::string> addedExcludedPaths; |
nothing calls this directly
no outgoing calls
no test coverage detected