| 153 | } |
| 154 | |
| 155 | bool Filesystem::exists (std::filesystem::path path) noexcept |
| 156 | { |
| 157 | std::error_code ec; |
| 158 | auto r = std::filesystem::exists(path, ec); |
| 159 | if (ec) |
| 160 | return false; |
| 161 | return r; |
| 162 | } |
| 163 | |
| 164 | bool Filesystem::isfile(std::filesystem::path path) noexcept |
| 165 | { |
no outgoing calls
no test coverage detected