在目录C ++中查找最后创建的FILE

时间:2015-04-26 16:06:57

标签: c++ file directory

即使我搜索过,网上也没有像我这样的问题。我的问题是,我想获取目录中创建的最后一个文件的名称。我的系统将在我的代码目录中创建来自我的Camera的/.png文件,我希望我的代码能够在最后创建的代码中使用。我想用这段代码来做,

string processName()
{
   // FILETIME Date = { 0, 0 };
   // FILETIME curDate;
   long long int curDate = 0x0000000000000000;
   long long int date    = 0x0000000000000000;
   //CONST FILETIME date={0,0};
   //CONST FILETIME curDate={0,0};
   string name;
   CFileFind finder;
   FILETIME* ft; 

   BOOL bWorking = finder.FindFile("*.png");
   while (bWorking)
   {

      bWorking = finder.FindNextFile();

      date = finder.GetCreationTime(ft) ;

      //ftd.dwLowDateTime  = (DWORD) (date & 0xFFFFFFFF );
      //ftd.dwHighDateTime = (DWORD) (date >> 32 );


      if ( CompareFileTime(date, curDate))
      {
          curDate = date;
          name = (LPCTSTR) finder.GetFileName();
      }



   }
   return name;
}

我没有使用额外的库,因为它可以在链接中看到:

https://msdn.microsoft.com/en-US/library/67y3z33c(v=vs.80).aspx

在这段代码中,我试图给64位FILETIME变量赋予初始值,并将它们与while循环进行比较。但是我收到以下错误。

1   IntelliSense: argument of type "long long" is incompatible with parameter of type "const FILETIME *"        44  25  
2   IntelliSense: argument of type "long long" is incompatible with parameter of type "const FILETIME *"        44  31  

getCreationTime方法将一个参数作为

参数: pTimeStamp:指向包含文件创建时间的FILETIME结构的指针。

refTime:对CTime对象的引用。

1 个答案:

答案 0 :(得分:2)

我想我修复了你的代码。不得不改变一些类型等:

string processName()
{
    FILETIME bestDate = { 0, 0 };
    FILETIME curDate;
    string name;
    CFileFind finder;

    finder.FindFile("*.png");
    while (finder.FindNextFile())
    {
        finder.GetCreationTime(&curDate);

        if (CompareFileTime(&curDate, &bestDate) > 0)
        {
            bestDate = curDate;
            name = finder.GetFileName().GetString();
        }
    }
    return name;
}