Contents Index Topic Contents | ||
Previous Topic: InternetErrorDlg Next Topic: InternetGetLastResponseInfo |
InternetFindNextFile
BOOL InternetFindNextFile( IN HINTERNET hFind, OUT LPVOID lpvFindData );Continues a file search started as a result of a previous call to FtpFindFirstFile or GopherFindFirstFile.
- Returns TRUE if the function succeeds, or FALSE otherwise. To get extended error information, call GetLastError. If the function finds no matching files, GetLastError returns ERROR_NO_MORE_FILES.
- hFind
- Valid handle returned from either FtpFindFirstFile or GopherFindFirstFile, or InternetOpenUrl (directories only).
- lpvFindData
- Address of the buffer that receives information about the found file or directory. The format of the information placed in the buffer depends on the protocol in use. The FTP protocol returns a WIN32_FIND_DATA structure, and the Gopher protocol returns a GOPHER_FIND_DATA structure.
Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.