gpt4 book ai didi

c++ - MFC CFindFile::FindNextFile 用法

转载 作者:行者123 更新时间:2023-11-30 00:59:51 24 4
gpt4 key购买 nike

CFindFile 的文档指出

Nonzero if there are more files; zero if the file found is the last one in the directory or if an error occurred. To get extended error information, call the Win32 function GetLastError. If the file found is the last file in the directory, or if no matching files can be found, the GetLastError function returns ERROR_NO_MORE_FILES.

那么,如果对 FindNextFile 的调用返回相同的值,我怎么知道我有 1 个文件还是 0 个文件?

如果找到零个文件,对 FindFile::GetFilePath() 的调用似乎会失败(无意中导致我的应用程序崩溃)。

pLog->Log(_T("Finding files in [%s]"), 1, szFilePath);

if (!oFindFile.FindFile(szFilePath, 0))
{
pLog->Log(_T("Failed to find file in directory: [%s]"),1,szDirectory);
return false;
}

bool moreFiles = true;
while(moreFiles)
{
moreFiles = oFindFile.FindNextFile();
if (oFindFile.IsDots())
{
continue;
}

CString szFileName = oFindFile.GetFilePath();
pLog->Log(_T("Found file [%s]"), 1, szFileName);
pVector->push_back(szFileName);
}
return true;

编辑

CString szFilePath = _T("C:\documents and settings\username\desktop\*.lnk");
CString szDirectory = T("C:\documents and settings\username\desktop");

最佳答案

如果没有文件,您对 CFileFind::FindFile 的调用将返回 false。您需要先调用它,然后才能调用 FindNextFile

关于c++ - MFC CFindFile::FindNextFile 用法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3671125/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com