命名空间
变体
操作

std::filesystem::directory_entry::directory_entry

来自 cppreference.com
 
 
 
 
directory_entry() noexcept = default;
(1) (自 C++17)
directory_entry( const directory_entry& ) = default;
(2) (自 C++17)
directory_entry( directory_entry&& ) noexcept = default;
(3) (自 C++17)
explicit directory_entry( const std::filesystem::path& p );
(4) (自 C++17)
directory_entry( const std::filesystem::path& p, std::error_code& ec );
(5) (自 C++17)

构造一个新的 directory_entry 对象。

1) 默认构造函数。
2) 默认复制构造函数。
3) 默认移动构造函数。
4,5) 使用路径 p 初始化目录项,并调用 refresh 来更新缓存的属性。如果发生错误,则非抛出重载将使 directory_entry 持有一个默认构造的路径。

[编辑] 参数

p - 指向目录项将引用到的文件系统对象的路径
ec - 非抛出重载中用于错误报告的输出参数

[编辑] 异常

任何未标记为 noexcept 的重载都可能在内存分配失败时抛出 std::bad_alloc

1-4) 在底层操作系统 API 错误上抛出 std::filesystem::filesystem_error,使用 p 作为第一个路径参数,并将操作系统错误代码作为错误代码参数构造。
5) 如果操作系统 API 调用失败,则将 std::error_code& 参数设置为操作系统 API 错误代码,如果未发生错误,则执行 ec.clear()

[编辑] 示例