| 105 | } |
| 106 | |
| 107 | bool isSamePath(const std::filesystem::path& lhs, const std::filesystem::path& rhs) |
| 108 | { |
| 109 | return std::filesystem::weakly_canonical(lhs) == std::filesystem::weakly_canonical(rhs); |
| 110 | } |
| 111 | |
| 112 | std::filesystem::path findFileInDirectories(const std::filesystem::path& path, fstd::span<std::filesystem::path> directories) |
| 113 | { |