命名空间
变体
操作

std::filesystem::path::relative_path

来自 cppreference.com
< cpp‎ | filesystem‎ | path
 
 
 
 
path relative_path() const;
(自 C++17)

返回相对于 根路径 的路径,即,由 *this 的所有通用格式组件组成的路径名,位于 根路径 之后。 如果 *this 是一个空路径,则返回一个空路径。

内容

[编辑] 参数

(无)

[编辑] 返回值

相对于 根路径 的路径。

[编辑] 异常

可能抛出实现定义的异常。

[编辑] 示例

#include <filesystem>
#include <iostream>
namespace fs = std::filesystem;
 
int main()
{
    fs::path p = fs::current_path();
 
    std::cout << "The current path " << p << " decomposes into:\n"
              << "root-path " << p.root_path() << '\n'
              << "relative path " << p.relative_path() << '\n';
}

可能的输出

The current path "C:\Users\abcdef\Local Settings\temp" decomposes into:
root-path "C:\"
relative path "Users\abcdef\Local Settings\temp"

[编辑] 另请参阅

如果存在,则返回路径的根名称
(公共成员函数) [编辑]
如果存在,则返回路径的根目录
(公共成员函数) [编辑]
如果存在,则返回路径的根路径
(公共成员函数) [编辑]