std::experimental::filesystem::last_write_time
来自cppreference.com
< cpp | experimental | fs
在标头 <experimental/filesystem> 定义
|
||
file_time_type last_write_time( const path& p ); file_time_type last_write_time( const path& p, error_code& ec ) |
(1) | (文件系统 TS) |
void last_write_time( const path& p, file_time_type new_time ); void last_write_time( const path& p, file_time_type new_time, error_code& ec ); |
(2) | (文件系统 TS) |
1) 返回 p 的最后修改时间,如同访问 POSIX stat 的成员
st_mtime
(跟随符号链接)。
The non-throwing overload returns file_time_type::min() on errors.Parameters
p | - | 要检查或修改的路径 |
new_time | - | 新的修改时间 |
ec | - | 用于无抛出重载中报告错误的输出形参 |
返回值
1) p 的最后修改时间。
2) (无)
异常
不接受 error_code& 形参的重载,在发生底层 OS API 错误时抛出 filesystem_error,它以 p 为第一实参并以 OS 错误码为错误码实参构造。如果内存分配失败,则可抛出 std::bad_alloc。接受 error_code& 形参的重载,当 OS API 调用失败时将之设置为 OS API 错误码,而未发生错误时执行 ec.clear()。此重载具有noexcept 规定:
noexcept
注解
并不保证当设置写入时间之后,立即由 (1) 返回的值与作为实参传递给 (2) 的值相同,因为文件系统的时间可能粒度要大于 file_time_type
。
示例
运行此代码
#include <chrono> #include <experimental/filesystem> #include <fstream> #include <iomanip> #include <iostream> namespace fs = std::experimental::filesystem; using namespace std::chrono_literals; int main() { fs::path p = fs::current_path() / "example.bin"; std::ofstream(p.c_str()).put('a'); // 创建文件 auto ftime = fs::last_write_time(p); std::time_t cftime = decltype(ftime)::clock::to_time_t(ftime); // 假定 system_clock std::cout << "文件写入时间为 " << std::asctime(std::localtime(&cftime)) << '\n'; fs::last_write_time(p, ftime + 1h); // 向未来移动文件写入时间 1 小时 ftime = fs::last_write_time(p); // 从文件系统读取回来 cftime = decltype(ftime)::clock::to_time_t(ftime); std::cout << "File write time is " << std::asctime(std::localtime(&cftime)) << '\n'; fs::remove(p); }
可能的输出:
文件写入时间为 Tue Mar 31 19:47:04 2015 文件写入时间为 Tue Mar 31 20:47:04 2015
参阅
表示文件时间值 (typedef) |