DOC: FindNextFile Returns 0 for Last File FoundLast reviewed: July 31, 1997Article ID: Q166505 |
The information in this article applies to:
SUMMARYThe documentation for CFileFind::FindNextFile, CFtpFileFind::FindNextFile, and CGopherFileFind::FindNextFile in the Class Library Reference with Visual C++ is incorrect. The documentation states:
Return Value Nonzero if successful; otherwise 0. To get extended error information, call the Win32 function GetLastError.The documentation should read:
Return Value 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. MORE INFORMATIONThe code below shows how to use CFileFind::FindNextFile to find every file in a directory.
Sample Code
CFileFind finder; BOOL bWorking = finder.FindFile("*.*"); while (bWorking) { bWorking = finder.FindNextFile(); // Do processing here } REFERENCESSee the CFileFind overview in the Visual C++ 5.0 documentation.
|
Additional query words: FindNextFile FileFind CFileFind CFtpFileFind
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |