| 95 | // file system virtual overrides |
| 96 | |
| 97 | bool MediaFileSystem::folderExists(const std::filesystem::path & path) |
| 98 | { |
| 99 | for (const auto& fs : m_FileSystems) |
| 100 | if (fs->folderExists(path)) |
| 101 | return true; |
| 102 | return false; |
| 103 | } |
| 104 | |
| 105 | bool MediaFileSystem::fileExists(const std::filesystem::path & path) |
| 106 | { |
no outgoing calls
no test coverage detected