c++ 獲取文件創建時間、修改時間、訪問時間、文件內容長度


int GetFileInfo(string& strPath, int& iCreateTime, int& iModifyTime, int& iAccessTime, int& iFileLen)
{
  struct _stat tmpInfo;
  if (_stat(strPath.c_str(), &tmpInfo) != 0)
  {
    return FALSE;
  }
  iCreateTime = static_cast<int>(tmpInfo.st_ctime);
  iModifyTime = static_cast<int>(tmpInfo.st_mtime);
  iAccessTime = static_cast<int>(tmpInfo.st_atime);
  iFileLen = static_cast<int>(tmpInfo.st_size);

  return TRUE;
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2026 CODEPRJ.COM