std::filesystem::last_write_time
来自 cppreference.com
< cpp | filesystem
定义在头文件 <filesystem> 中 |
||
std::filesystem::file_time_type last_write_time( const std::filesystem::path& p ); |
(1) | (自 C++17 起) |
std::filesystem::file_time_type last_write_time( const std::filesystem::path& p, std::error_code& ec ) noexcept; |
(2) | (自 C++17 起) |
void last_write_time( const std::filesystem::path& p, std::filesystem::file_time_type new_time ); |
(3) | (自 C++17 起) |
void last_write_time( const std::filesystem::path& p, std::filesystem::file_time_type new_time, |
(4) | (自 C++17 起) |
内容 |
[编辑] 参数
p | - | 要检查或修改的路径 |
new_time | - | 新的修改时间 |
ec | - | 非抛出重载中用于错误报告的输出参数 |
[编辑] 返回值
1,2) p 最后修改的时间。
3,4)(无)
[编辑] 异常
任何未标记 noexcept
的重载在内存分配失败时可能会抛出 std::bad_alloc。
[编辑] 备注
不能保证在设置写入时间后,由 (1,2) 返回的值与传递给 (3,4) 的参数相同,因为文件系统的计时可能比 filesystem::file_time_type 更精细。
[编辑] 示例
运行此代码
#include <chrono> #include <filesystem> #include <format> #include <fstream> #include <iostream> using namespace std::chrono_literals; int main() { auto p = std::filesystem::temp_directory_path() / "example.bin"; std::ofstream{p.c_str()}.put('a'); // create file std::filesystem::file_time_type ftime = std::filesystem::last_write_time(p); std::cout << std::format("File write time is {}\n", ftime); // move file write time 1 hour to the future std::filesystem::last_write_time(p, ftime + 1h); // read back from the filesystem ftime = std::filesystem::last_write_time(p); std::cout << std::format("File write time is {}\n", ftime); std::filesystem::remove(p); }
可能的输出
File write time is 2023-09-04 19:33:24.702639224 File write time is 2023-09-04 20:33:24.702639224
[编辑] 另请参阅
(C++17) |
表示文件时间值 (typedef) |
获取目录项所指文件最后数据修改的时间 ( std::filesystem::directory_entry 的公共成员函数) |