std::filesystem::directory_entry::last_write_time
< cpp | filesystem | directory entry
std::filesystem::file_time_type last_write_time() const; std::filesystem::file_time_type last_write_time( std::error_code& ec ) const noexcept; |
(C++17 起) | |
若最后修改时间缓存于此 directory_entry
,则返回缓存值。否则,各返回 std::filesystem::last_write_time(path()) 或 std::filesystem::last_write_time(path(), ec)
参数
ec | - | 不抛出重载中报告错误的输出参数 |
返回值
被指代文件系统对象的最后修改时间
异常
不接受 std::error_code& 参数的重载在底层 OS API 错误时抛出 filesystem_error ,以第一 path 参数 p
和作为错误码参数的 OS 错误码构造。若 OS API 调用失败,则接受 std::error_code& 参数的重载设置该参数为 OS API 错误码,而若不出现错误则执行 ec.clear() 。若内存分配失败,则任何不标记为 noexcept
的重载可能抛出 std::bad_alloc 。
示例
本节未完成 原因:暂无示例 |
参阅
(C++17) |
获取或设置最近一次数据修改的时间 (函数) |