由于在 C++17 中std::filesystem::file_time_type
使用了一个微不足道的时钟,有没有办法file_time_type
用 C++17** 检索实际的时钟类型?
目标是将时间转换为std::chrono::system_clock
在流中使用它。
** 在 C++20 中,file_time_type
将使用std::chrono::file_clock
,它具有operator<<
并且可以使用 . 转换为其他时钟std::chrono::clock_cast
。