| 103 | } |
| 104 | |
| 105 | bool MediaFileSystem::fileExists(const std::filesystem::path & path) |
| 106 | { |
| 107 | for (const auto& fs : m_FileSystems) |
| 108 | if (fs->fileExists(path)) |
| 109 | return true; |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | std::shared_ptr<IBlob> MediaFileSystem::readFile(const std::filesystem::path & name) |
| 114 | { |
no outgoing calls
no test coverage detected