Determine if the path is an absolute path
| 431 | |
| 432 | // Determine if the path is an absolute path |
| 433 | bool isAbsolutePath(const std::string& path) |
| 434 | { |
| 435 | if (path.find("://") != std::string::npos) |
| 436 | return true; |
| 437 | |
| 438 | return fs::path(toNative(path)).is_absolute(); |
| 439 | } |
| 440 | |
| 441 | |
| 442 | void fileTimes(const std::string& filename, struct tm *createTime, |