C++学习(五十九)获取文件的属性信息,比如最后修改时间

 

#include 
TimeStamp
osgEarth::getLastModifiedTime(const std::string& path)
{
    struct stat buf;
    if ( stat(path.c_str(), &buf) == 0 )
        return buf.st_mtime;
    else
        return 0;
}

 

 

你可能感兴趣的:(C++)