std::filesystem::path::filename
来自 cppreference.com
< cpp | filesystem | path
path filename() const; |
(自 C++17) | |
返回路径的通用格式文件名组件。
等效于 relative_path().empty() ? path() : *--end().
内容 |
[编辑] 参数
(无)
[编辑] 返回值
由路径标识的文件名。
[编辑] 异常
可能会抛出实现定义的异常。
[编辑] 示例
运行此代码
#include <filesystem> #include <iostream> namespace fs = std::filesystem; int main() { std::cout << fs::path("/foo/bar.txt").filename() << '\n' << fs::path("/foo/.bar").filename() << '\n' << fs::path("/foo/bar/").filename() << '\n' << fs::path("/foo/.").filename() << '\n' << fs::path("/foo/..").filename() << '\n' << fs::path(".").filename() << '\n' << fs::path("..").filename() << '\n' << fs::path("/").filename() << '\n' << fs::path("//host").filename() << '\n'; }
输出
"bar.txt" ".bar" "" "." ".." "." ".." "" "host"
[编辑] 另请参阅
返回文件扩展名路径组件 (公共成员函数) | |
返回主干路径组件(文件名不含最终扩展名) (公共成员函数) | |
用另一条路径替换最后一个路径组件 (公共成员函数) | |
检查相应的路径元素是否为空 (公共成员函数) |