| 172 | } |
| 173 | |
| 174 | std::shared_ptr<CbmfsDirent> findFile(const std::string& filename) |
| 175 | { |
| 176 | for (auto& de : dirents) |
| 177 | if (de->filename == filename) |
| 178 | return de; |
| 179 | |
| 180 | throw FileNotFoundException(); |
| 181 | } |
| 182 | |
| 183 | public: |
| 184 | uint8_t dosVersion; |
no test coverage detected