std::experimental::filesystem::file_time_type
来自cppreference.com
< cpp | experimental | fs
在标头 <experimental/filesystem> 定义
|
||
using file_time_type = chrono::time_point</*trivial-clock*/>; |
(文件系统 TS) | |
表示文件时间。trivial-clock
是一种由实现定义的满足平凡时钟 (TrivialClock) 的类型,足以表示文件系统所提供的文件时间的分辨率和范围。
示例
运行此代码
#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
参阅
获取或设置最近一次数据修改的时间 (函数) |