我在获取目录的最新文件时遇到问题。除非该文件夹中只有一个文件,否则我的代码可以正常工作。我正在使用CFileFind
课程来使这一切发生。我查看了 Microsoft 文档,它说.GetFileName
只能在FindNextFile
. 如果有人有解决方案,我将非常感激。这是我的代码:
std::string getLatestFile(std::string directory, const std::string& extension) {
FILETIME mostRecent = { 0, 0 };
FILETIME curDate;
std::string name;
CFileFind finder;
if (!CheckIfDirectory(directory))
return "";
ensureProperTermination(directory);//this just makes sure that the path is "\\" terminated
if (extension[0] == '.')
finder.FindFile((directory + "*" + extension).c_str());
else
finder.FindFile((directory + "*." + extension).c_str());
while (finder.FindNextFile())
{
finder.GetCreationTime(&curDate);
if (CompareFileTime(&curDate, &mostRecent) > 0)
{
mostRecent = curDate;
name = finder.GetFileName().GetString();
}
}
return directory + name;
}