libcosmos
Linux C++ System Programming Library
|
#include <string>
#include <string_view>
#include <cosmos/dso_export.h>
#include <cosmos/SysString.hxx>
Go to the source code of this file.
Functions | |
std::string | cosmos::fs::normalize_path (const std::string_view path) |
Takes an input path and returns a normalized version of it. | |
std::string | cosmos::fs::canonicalize_path (const SysString path) |
Normalizes path and resolves any symbolic link components. | |
File system path related helpers.
Definition in file path.hxx.
COSMOS_API std::string cosmos::fs::canonicalize_path | ( | const SysString | path | ) |
Normalizes path
and resolves any symbolic link components.
Definition at line 64 of file path.cxx.
COSMOS_API std::string cosmos::fs::normalize_path | ( | const std::string_view | path | ) |
Takes an input path and returns a normalized version of it.
A normalized path is an absolute path without any redundant separators ('/') or relative path components (".", "..").
To achieve this, this function eliminates redundant components and expands the current working directory, if necessary. Retrieving the CWD is the only potential system call performed by this function.
Symbolic links will not be resolved. If you want this you can use canonicalize_path() instead.
Definition at line 17 of file path.cxx.