last_write_time Mismatch on Copied Directories
问题 I'm uncertain whether this is a platform difference or an implementation difference. I'm hoping that someone can help me shed light on that. Given this code: filesystem::path foo("foo"); filesystem::path bar("bar"); filesystem::create_directories(foo); filesystem::copy(foo, bar); const auto fooftime = filesystem::last_write_time(foo); const auto barftime = filesystem::last_write_time(bar); const auto foocftime = decltype(fooftime)::clock::to_time_t(fooftime); const auto barcftime = decltype