std::experimental::filesystem::path::relative_path
来自 cppreference.com
< cpp | experimental | fs | path
path relative_path() const; |
(filesystem TS) | |
返回相对于 根路径 的路径。如果 *this 是一个空路径,则返回一个空路径。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
相对于 根路径 的路径。
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 示例
运行此代码
#include <experimental/filesystem> #include <iostream> namespace fs = std::experimental::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"
[编辑] 参见
返回路径的根名称,如果存在 (公有成员函数) | |
返回路径的根目录,如果存在 (公有成员函数) | |
返回路径的根路径,如果存在 (公有成员函数) |