1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-11 21:17:28 +03:00
mold/filepath.cc
Rui Ueyama 58e43633fc Revert "Revert "Use C++17 filesystem API""
This reverts commit f29a85f20a with a fix
for a build failure.
2021-12-31 16:39:54 +09:00

28 lines
709 B
C++

#include "mold.h"
#include <filesystem>
#include <sys/stat.h>
namespace mold {
std::string get_realpath(std::string_view path) {
std::error_code ec;
std::string ret = std::filesystem::canonical(path, ec);
return ec ? std::string(path) : ret;
}
// Removes redundant '/..' or '/.' from a given path.
// The transformation is done purely by lexical processing.
// This function does not access file system.
std::string path_clean(std::string_view path) {
return filepath(path).lexically_normal();
}
std::filesystem::path to_abs_path(std::filesystem::path path) {
if (path.is_absolute())
return path;
return (std::filesystem::current_path() / path).lexically_normal();
}
} // namespace mold