| 42 | } |
| 43 | |
| 44 | std::string FileSystem::joinPath(const std::string& base, const std::string& part) { |
| 45 | return base + "/" + part; |
| 46 | } |
| 47 | |
| 48 | std::string FileSystem::getFileExtension(const std::filesystem::path& path) { |
| 49 | auto extension = path.extension(); |
no outgoing calls
no test coverage detected