| 187 | } |
| 188 | |
| 189 | bool ZipFile::isFolder(const std::string& path) const { |
| 190 | if (!_file) return false; |
| 191 | std::string searchName = getSearchName(path); |
| 192 | return _file->folderList.find(searchName) != _file->folderList.end(); |
| 193 | } |
| 194 | |
| 195 | bool ZipFile::isOK() const { |
| 196 | return _file != nullptr; |
nothing calls this directly
no test coverage detected