boost last_write_time 恢复一小时

boost last_write_time is back one hour

我试图解决以下代码中的错误,其中我与 boost last_write_time.

有一个小时的差异

为了更好地解释它:我创建了一个文件,然后我尝试使用 boost::filesystem::path.

提取它的创建时间
void PrintTime(boost::filesystem::path _file) {
    time_t sys_time{ last_write_time(_file) };
    ptime p_time{ boost::posix_time::from_time_t(sys_time) };
    boost::posix_time::time_duration time_dur{ p_time.time_of_day() };

    long h{ time_dur.hours() }; //1a
    long m{ time_dur.minutes() };
    long s{ time_dur.seconds() };

    //...print h, m, s.
    }

    //1a: Here when for example the time I expect is 12:34:56,
    //I always get 11:34:56

知道这是为什么吗? boost last_write_time 的某处是否有时区? 我的os通过系统查看文件时显示正确的时间

您必须翻译成 "presentation" time-zone,例如 "when [you] check the file through the system"。来自文件系统的时间戳是 UTC 时间。

例如如果你这样做

std::cout << boost::posix_time::second_clock::local_time() << "\n";
std::cout << boost::posix_time::second_clock::universal_time() << "\n";

你可能会得到

2018-Feb-27 16:03:12
2018-Feb-27 15:03:12

修复:

#include <boost/date_time/c_local_time_adjustor.hpp>

void PrintTime(boost::filesystem::path _file) {
    using boost::posix_time::ptime;
    using adj = boost::date_time::c_local_adjustor<ptime>;

    time_t const sys_time = last_write_time(_file);
    ptime const utc       = boost::posix_time::from_time_t(sys_time);
    ptime const local     = adj::utc_to_local(utc);

演示

看到了Live On Coliru

#include <boost/filesystem.hpp>
#include <boost/date_time/posix_time/posix_time_io.hpp>
#include <boost/date_time/posix_time/conversion.hpp>
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/date_time/c_local_time_adjustor.hpp>

void PrintTime(boost::filesystem::path _file) {
    using boost::posix_time::ptime;
    using adj = boost::date_time::c_local_adjustor<ptime>;

    time_t const sys_time = last_write_time(_file);
    ptime const utc       = boost::posix_time::from_time_t(sys_time);
    ptime const local     = adj::utc_to_local(utc);

    std::cout << "utc: " << utc << "\n";
    std::cout << "local: " << local << "\n";
    {
        long h{ local.time_of_day().hours() };
        long m{ local.time_of_day().minutes() };
        long s{ local.time_of_day().seconds() };

        //...print h, m, s.
        std::cout << h << ":" << m << ":" << s << '\n';
    }
}

int main() {
    PrintTime("main.cpp");
}

打印(在我的系统上):

utc: 2018-Feb-27 15:19:45
local: 2018-Feb-27 16:19:45
16:19:45