Group: Internet Functions (WinInet) - Library: wininet
Continues a file search started as a result of a previous call to FtpFindFirstFile or GopherFindFirstFile
Retrieving list of files on the FTP directory
Downloading files from the FTP server using InternetReadFile
Reading list of folders and files on FTP server
Custom FTP Class for Visual FoxPro application
BOOL InternetFindNextFile(
HINTERNET hFind,
LPVOID lpvFindData
);
DECLARE INTEGER InternetFindNextFile IN wininet;
INTEGER hFind,;
STRING @ lpvFindData hFind [in] Valid HINTERNET handle returned from either FtpFindFirstFile or GopherFindFirstFile, or from InternetOpenUrl (directories only).
lpvFindData [out] Pointer to the buffer that receives information about the found file or directory
Returns TRUE if the function succeeds, or FALSE otherwise
Home