std::filesystem::absolute
From cppreference.com
< cpp | filesystem
| Defined in header <filesystem>
|
||
| path absolute( const std::filesystem::path& p ); |
(1) | (since C++17) |
| path absolute( const std::filesystem::path& p, std::error_code& ec ); |
(2) | (since C++17) |
Returns a path referencing the same file system location as p, for which filesystem::path::is_absolute() is true.
2) This non-throwing overload returns default-constructed path if an error occurs.
Contents |