std::filesystem::path::parent_path
来自 cppreference.com
< cpp | filesystem | path
path parent_path() const; |
(自 C++17) | |
返回父目录的路径。
如果 has_relative_path() 返回 false,则结果是 *this 的副本。否则,结果是路径,其通用格式路径名称是 *this 的通用格式路径名称的最长前缀,该前缀在其迭代中产生少一个元素。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
父目录的路径,或者如果 has_relative_path() 为假,则为 *this 的副本。
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 示例
运行这段代码
#include <filesystem> #include <iostream> namespace fs = std::filesystem; int main() { for (fs::path p : {"/var/tmp/example.txt", "/", "/var/tmp/."}) std::cout << "The parent path of " << p << " is " << p.parent_path() << '\n'; }
可能的输出
The parent path of "/var/tmp/example.txt" is "/var/tmp" The parent path of "/" is "/" The parent path of "/var/tmp/." is "/var/tmp"
[编辑] 另请参阅
返回路径的根名称(如果存在)。 (公有成员函数) | |
返回路径的根目录(如果存在)。 (公有成员函数) | |
返回路径的根路径(如果存在)。 (公有成员函数) |