std::filesystem::absolute

来自cppreference.com
 
 
 
在标头 <filesystem> 定义
path absolute( const std::filesystem::path& p );
(1) (C++17 起)
path absolute( const std::filesystem::path& p, std::error_code& ec );
(2) (C++17 起)

返回与 p 引用同一文件系统位置的路径,满足 is_absolute()true。不抛出重载在错误时返回默认构造的路径。

参数

p - 要转换成绝对形式的路径
ec - 不抛出重载中报告错误的输出形参

返回值

返回与 p 引用同一文件的绝对(尽管不必规范)路径名。

异常

若内存分配失败,则任何不标记为 noexcept 的重载可能抛出 std::bad_alloc

1) 抛出 std::filesystem::filesystem_error,构造时以 p 为第一路径实参并以OS 错误码为错误码实参。

若 OS API 调用失败,则 @2@ 设置 std::error_code& 形参

为 OS API 错误码,而未发生错误时则执行 ec.clear()

注解

鼓励实现认为 p 不存在不是错误。

对于基于 POSIX 的操作系统,排除 p 为空的情况,std::filesystem::absolute(p) 等价于 std::filesystem::current_path() / p

对于 Windows,std::filesystem::absolute 可以实现为对 GetFullPathNameW 的调用。

示例

#include <filesystem>
#include <iostream>
namespace fs = std::filesystem;
 
int main()
{
    std::filesystem::path p = "foo.c";
    std::cout << "当前路径为 " << std::filesystem::current_path() << '\n';
    std::cout << p << " 的绝对路径为 " << fs::absolute(p) << '\n';
}

可能的输出:

当前路径为 "/tmp/1666297965.0051296"
"foo.c" 的绝对路径为 "/tmp/1666297965.0051296/foo.c"

参阅

组成一个规范路径
(函数)
组成一个相对路径
(函数)