| 7 | namespace engine::io { |
| 8 | |
| 9 | bool is_existing_directory(const std::filesystem::path & path) { |
| 10 | std::error_code ec; |
| 11 | return std::filesystem::is_directory(path, ec); |
| 12 | } |
| 13 | |
| 14 | bool is_existing_file(const std::filesystem::path & path) { |
| 15 | std::error_code ec; |
no outgoing calls
no test coverage detected