std::filesystem::directory_entry::path
来自 cppreference.com
< cpp | filesystem | directory entry
const std::filesystem::path& path() const noexcept; |
(自 C++17 起) | |
operator const std::filesystem::path& () const noexcept; |
(自 C++17 起) | |
返回目录条目引用的完整路径。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
目录条目引用的完整路径。
[编辑] 示例
运行此代码
#include <filesystem> #include <fstream> #include <iostream> namespace fs = std::filesystem; std::string get_stem(const fs::path& p) { return p.stem().string(); } void create_file(const fs::path& p) { std::ofstream o{p}; } int main() { const fs::path dir{"tmp_dir"}; fs::create_directory(dir); create_file(dir / "one"); create_file(dir / "two"); create_file(dir / "three"); for (const auto& file : fs::directory_iterator(dir)) { // Explicit conversion std::cout << get_stem(file.path()) << '\n'; // Implicit conversion std::cout << get_stem(file) << '\n'; } fs::remove_all(dir); }
可能输出
two two one one three three
[编辑] 参见
(C++17) |
表示路径 (类) |