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