std::filesystem::absolute
来自 cppreference.com
< cpp | filesystem
定义在头文件 <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 相同的文件系统位置,对于该路径,filesystem::path::is_absolute() 为 true.
2) 此非抛出重载在发生错误时返回默认构造的路径。
内容 |
[编辑] 参数
p | - | 要转换为绝对形式的路径 |
ec | - | 非抛出重载中用于错误报告的输出参数 |
[编辑] 返回值
返回一个绝对(但可能不是规范的)路径名,引用与 p 相同的文件。
[编辑] 异常
任何未标记为 noexcept
的重载都可能在内存分配失败时抛出 std::bad_alloc。
[编辑] 注释
鼓励实现不将 p 不存在视为错误。
对于基于 POSIX 的操作系统,std::filesystem::absolute(p) 等效于 std::filesystem::current_path() / p,除了 p 为空路径的情况。
对于 Windows,std::filesystem::absolute
可以实现为对 GetFullPathNameW
的调用。
[编辑] 示例
运行此代码
#include <filesystem> #include <iostream> namespace fs = std::filesystem; int main() { std::filesystem::path p = "foo.c"; std::cout << "Current path is " << std::filesystem::current_path() << '\n'; std::cout << "Absolute path for " << p << " is " << fs::absolute(p) << '\n'; }
可能的输出
Current path is "/tmp/1666297965.0051296" Absolute path for "foo.c" is "/tmp/1666297965.0051296/foo.c"
[编辑] 参见
(C++17) |
组合规范路径 (函数) |
(C++17) |
组合相对路径 (函数) |