如何在C ++中获取文件时间

时间:2011-03-03 08:44:14

标签: c++ windows winapi filetime

我在获取文件时间时遇到问题..有谁知道如何获取文件时间?

我有一个代码获取某个目录的文件名我的问题是我不知道如何将文件时间放在目录中的每个文件中...

这是我的代码:

#include <vector>
#include <string>
#include <windows.h>
#include <stdio.h>
#include <iostream> 
#include <conio.h>
#include <sys\types.h>
#include <sys\stat.h>
#include <time.h>
#include <exception>
#include <WinBase.h>

        using namespace std;
int ifException(string directory) throw()
    {
        DWORD returnvalue;
        returnvalue = GetFileAttributes(directory.c_str());
            if(returnvalue == ((DWORD)-1))
            {
                return 0;
            }
            else
            {   
                return 1;
            }
}



    vector <string> GetPath(string path)
    {



            char directory[9999];
            vector <string> filelist;
            string buffer;
            strcpy_s(directory,path.c_str());
            BOOL checker;




                try
                    {
                        ifException(directory);

                    }catch(int i)
                    {   
                        if (i==0)
                        {
                            _getch();
                            exit(1);
                        }
                    }
                buffer = findFileData.cFileName;
                filelist.push_back(buffer);
                checker = FindNextFile(hFind, &findFileData);
                while(checker)
                {
                    if(checker == 0)
                    {
                        filelist.resize(filelist.size());
                        return filelist;
                    }
                    checker = FindNextFile(hFind, &findFileData);
                    buffer = findFileData.cFileName;
                    filelist.push_back(buffer);;//save file list in vector
                }
                return filelist;
    }

    int main()
    {
       string path;

       path="C:\\Documents and Settings\\OJT\\My Documents\\game\\FSNPC\\*.*";// the directory
       vector <string> handler;
       handler = GetPath(path);
        for (unsigned i=1;i<handler.size()-1;i++)
        {
            cout << handler[i]<<endl;//print out the vector
        }
       _getch();
    }

5 个答案:

答案 0 :(得分:4)

这适用于* nix平台。

   int stat(const char *path, struct stat *buf);
   int fstat(int fd, struct stat *buf);
   int lstat(const char *path, struct stat *buf);

       struct stat {
           dev_t     st_dev;     /* ID of device containing file */
           ino_t     st_ino;     /* inode number */
           mode_t    st_mode;    /* protection */
           nlink_t   st_nlink;   /* number of hard links */
           uid_t     st_uid;     /* user ID of owner */
           gid_t     st_gid;     /* group ID of owner */
           dev_t     st_rdev;    /* device ID (if special file) */
           off_t     st_size;    /* total size, in bytes */
           blksize_t st_blksize; /* blocksize for file system I/O */
           blkcnt_t  st_blocks;  /* number of 512B blocks allocated */
           time_t    st_atime;   /* time of last access */
           time_t    st_mtime;   /* time of last modification */
           time_t    st_ctime;   /* time of last status change */
       };

答案 1 :(得分:2)

我认为Windows API具有GetFileTime功能,查找一下,我有一段时间没见过。

更新:查看herehere

答案 2 :(得分:0)

你做不到。 AFAIK不存储创建时间。至少在linux上。 您可以使用fstat获取最后修改的时间或最后一次访问时间以及一个我不记得的时间戳。但是没有存储创建时间。

也许您的操作系统可以提供创建时间。但为此你必须更具体。

答案 3 :(得分:0)

由于我们现在知道您在Windows上,因此您正在寻找GetFileTime function,它允许您检索任何文件或目录的创建,上次访问或上次修改的日期和时间。它通过使用时间值填充指定为参数的FILETIME structure(s)来完成此操作。

BOOL WINAPI GetFileTime(
  __in       HANDLE hFile,                // handle to the file
  __out_opt  LPFILETIME lpCreationTime,   // FILETIME struct for creation time
  __out_opt  LPFILETIME lpLastAccessTime, // FILETIME struct for last access time
  __out_opt  LPFILETIME lpLastWriteTime   // FILETIME struct for last modification time
);

由于你所关心的只是创建时间,你可以忽略最后两个参数。它们是可选的。您可以找到检索文件here on MSDN的上次写入时间的完整示例。

使用适当的值填充FILETIME结构后,您可能希望使用FileTimeToSystemTime function将该值转换为适合显示的格式。

答案 4 :(得分:0)

Windows,你说?使用GetFileTime。然后,您可能希望使用FileTimeToSystemTime使其更易于管理(GetFileTime实际上只返回相对于1601年1月1日的64位时间戳,FileTimeToSystemTime将其转换为结构有小时,分钟,日,月等字段......)。