Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.32 KB

File metadata and controls

50 lines (35 loc) · 1.32 KB

Home

Function name : InternetFindNextFile

Group: Internet Functions (WinInet) - Library: wininet


Continues a file search started as a result of a previous call to FtpFindFirstFile or GopherFindFirstFile


Code examples:

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

Declaration:

BOOL InternetFindNextFile(
    HINTERNET hFind,
    LPVOID lpvFindData
);
  

FoxPro declaration:

DECLARE INTEGER InternetFindNextFile IN wininet;
	INTEGER  hFind,;
	STRING @ lpvFindData  

Parameters:

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


Return value:

Returns TRUE if the function succeeds, or FALSE otherwise