标签: c++ boost
当我使用boost::filesystem::last_write_time(p, filetime)时,其中p为提升path而filetime为time_t,一切正常。但是,last_write_time设置为当前时间,这是有问题的。有谁知道如何防止此函数更新最后写入时间?
boost::filesystem::last_write_time(p, filetime)
p
path
filetime
time_t
last_write_time
答案 0 :(得分:1)
尝试使用单参数版本:
boost::filesystem::last_write_time(p);