std::experimental::filesystem::path::root_name
来自 cppreference.com
< cpp | experimental | fs | path
path root_name() const; |
(文件系统 TS) | |
返回路径的根名称。如果路径不包含根名称,则返回 path()。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
路径的根名称。
[编辑] 异常
可能抛出实现定义的异常。
[编辑] 示例
运行此代码
#include <experimental/filesystem> #include <iostream> namespace fs = std::experimental::filesystem; int main() { std::cout << "Current root name is: " << fs::current_path().root_name() << '\n'; }
可能的输出
Current root name is: "C:"
[编辑] 另请参阅
返回路径的根目录(如果存在) (公共成员函数) | |
返回路径的根路径(如果存在) (公共成员函数) |