std::filesystem::directory_entry::last_write_time
来自cppreference.com
< cpp | filesystem | directory entry
std::filesystem::file_time_type last_write_time() const; |
(1) | (C++17 起) |
std::filesystem::file_time_type last_write_time( std::error_code& ec ) const noexcept; |
(2) | (C++17 起) |
若最后修改时间缓存于此 directory_entry
,则返回缓存值。否则,各返回:
1) std::filesystem::last_write_time(path())。
2) std::filesystem::last_write_time(path(), ec)。
参数
ec | - | 不抛出重载中报告错误的输出形参 |
返回值
被指代文件系统对象的最后修改时间。
异常
若内存分配失败,则任何不标记为 noexcept
的重载可能抛出 std::bad_alloc 。
1) 抛出 std::filesystem::filesystem_error,构造时以 p 为第一路径实参并以OS 错误码为错误码实参。
若 OS API 调用失败,则 @2@ 设置 std::error_code& 形参
为 OS API 错误码,而未发生错误时则执行 ec.clear()。示例
运行此代码
#include <chrono> #include <ctime> #include <filesystem> #include <format> #include <iostream> #include <string> std::string to_string(const std::filesystem::file_time_type& ftime) { #if __cpp_lib_format return std::format("{:%c}", ftime); #else std::time_t cftime = std::chrono::system_clock::to_time_t( std::chrono::file_clock::to_sys(ftime)); std::string str = std::asctime(std::localtime(&cftime)); str.pop_back(); // 移除 `asctime` 放在尾部的 '\n' return str; #endif } int main() { auto dir = std::filesystem::current_path(); using Entry = std::filesystem::directory_entry; for (Entry const& entry : std::filesystem::directory_iterator(dir)) std::cout << to_string(entry.last_write_time()) << " : " << entry.path().filename() << '\n'; }
可能的输出:
Wed Sep 6 13:37:13.960314156 2023 : "main.cpp" Wed Sep 6 13:37:42.690271828 2023 : "a.out"
参阅
(C++17) |
获取或设置最近一次数据修改的时间 (函数) |