| 172 | } |
| 173 | |
| 174 | bool Filesystem::isdir (std::filesystem::path path) noexcept |
| 175 | { |
| 176 | std::error_code ec; |
| 177 | // is_directory() also checks for existence. |
| 178 | auto r = std::filesystem::is_directory(path, ec); |
| 179 | if (ec) |
| 180 | return false; |
| 181 | return r; |
| 182 | } |
| 183 | |
| 184 | std::time_t Filesystem::mtime (std::filesystem::path path) noexcept |
| 185 | { |
no outgoing calls
no test coverage detected