std::filesystem::directory_entry::exists
来自 cppreference.com
< cpp | filesystem | directory entry
bool exists() const; |
(1) | (自 C++17 起) |
bool exists( std::error_code& ec ) const noexcept; |
(2) | (自 C++17 起) |
检查指向的对象是否存在。实际上返回
1) std::filesystem::exists(status()),
2) std::filesystem::exists(status(ec)).
请注意,status()
会跟踪符号链接到其目标。
内容 |
[编辑] 参数
ec | - | 在非抛出重载中用于错误报告的输出参数 |
[编辑] 返回值
如果引用的文件系统对象存在,则为 true。
[编辑] 异常
任何未标记为 noexcept
的重载都可能在内存分配失败时抛出 std::bad_alloc。
[编辑] 示例
运行此代码
#include <filesystem> #include <iostream> int main() { for (auto const str: { "/usr/bin/cat", "/usr/bin/mouse", "/usr/bin/python", "/usr/bin/bison", "/usr/bin/yacc", "/usr/bin/c++", }) { std::filesystem::directory_entry entry{str}; std::cout << "directory entry " << entry << (entry.exists() ? " exists\n" : " does not exist\n"); } }
可能的输出
// Output on a POSIX system: directory entry "/usr/bin/cat" exist directory entry "/usr/bin/mouse" does not exist directory entry "/usr/bin/python" exists directory entry "/usr/bin/bison" exists directory entry "/usr/bin/yacc" does not exist directory entry "/usr/bin/c++" exists
[编辑] 另请参见
(C++17) |
检查路径是否引用现有文件系统对象 (函数) |