| 126 | } |
| 127 | |
| 128 | std::shared_ptr<Dirent> getDirent(const Path& path) override |
| 129 | { |
| 130 | mount(); |
| 131 | if (path.size() != 1) |
| 132 | throw BadPathException(); |
| 133 | |
| 134 | return findFile(path.front()); |
| 135 | } |
| 136 | |
| 137 | std::vector<std::shared_ptr<Dirent>> list(const Path& path) override |
| 138 | { |
nothing calls this directly
no test coverage detected