std::filesystem::directory_entry::last_write_time (3) Linux Manual Page
std::filesystem::directory_entry::last_write_time – std::filesystem::directory_entry::last_write_time Synopsis std::filesystem::file_time_type last_write_time() const; (since C++ 17) std::filesystem::file_time_type last_write_time(std::error_code &ec) const noexcept; If the last modification time is cached in this directory_entry, returns the cached value. Otherwise, returns std::filesystem::last_write_time(path()) or std::filesystem::last_write_time(path(), ec), respectively Parameters ec – out-parameter for error reporting in the non-throwing overload Return value The last modification time for the…
