| 83 | |
| 84 | |
| 85 | std::vector<std::string> getEntries(const std::string& dirPath, int depth) { |
| 86 | std::vector<std::string> entries; |
| 87 | appendEntries(entries, fs::u8path(dirPath), depth); |
| 88 | return entries; |
| 89 | } |
| 90 | |
| 91 | |
| 92 | bool exists(const std::string& path) { |
no test coverage detected