1

我在获取文件时间创建时遇到问题..有人知道如何获取文件时间吗?

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

这是我的代码:

#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();
    }
4

5 回答 5

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 */
       };
于 2011-03-03T08:46:12.040 回答
2

我觉得windows API有GetFileTime功能,查一下,好久没看到windows了。

更新:看这里这里

于 2011-03-03T08:49:26.217 回答
1

由于我们现在知道您在 Windows 上,因此您正在寻找GetFileTime函数,它允许您检索任何文件或目录的创建、上次访问或上次修改日期和时间。它通过用时间值填充指定为参数的FILETIME结构来做到这一点。

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
);

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

一旦你FILETIME用适当的值填充了结构,你可能希望使用该FileTimeToSystemTime函数将该值转换为显示友好的格式。

于 2011-03-03T08:50:04.970 回答
1

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

于 2011-03-03T08:50:15.047 回答
0

你不能。AFAIK 不存储创建时间。至少在linux上。您可以使用 fstat 来获取上次修改时间或上次访问时间以及我不记得的另一个时间戳。但不存储创建时间。

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

于 2011-03-03T08:49:06.733 回答