| 235 | } |
| 236 | |
| 237 | std::shared_ptr<Dirent> getDirent(const Path& path) override |
| 238 | { |
| 239 | if (path.size() != 1) |
| 240 | throw BadPathException(); |
| 241 | |
| 242 | Directory dir(this); |
| 243 | return dir.findFile(unhex(path[0])); |
| 244 | } |
| 245 | |
| 246 | Bytes getFile(const Path& path) override |
| 247 | { |
nothing calls this directly
no test coverage detected