Skip to content

Latest commit

 

History

History
101 lines (76 loc) · 4.42 KB

nf-wininet-internetfindnextfilew.md

File metadata and controls

101 lines (76 loc) · 4.42 KB
UID title description helpviewer_keywords old-location tech.root ms.assetid ms.date ms.keywords req.header req.include-header req.target-type req.target-min-winverclnt req.target-min-winversvr req.kmdf-ver req.umdf-ver req.ddi-compliance req.unicode-ansi req.idl req.max-support req.namespace req.assembly req.type-library req.lib req.dll req.irql targetos req.typenames req.redist ms.custom f1_keywords dev_langs topic_type api_type api_location api_name
NF:wininet.InternetFindNextFileW
InternetFindNextFileW function (wininet.h)
Continues a file search started as a result of a previous call to FtpFindFirstFile.Windows XP and Windows Server 2003 R2 and earlier:  Or continues a file search as a result of a previous call to GopherFindFirstFile. (Unicode)
InternetFindNextFile
InternetFindNextFile function [WinINet]
InternetFindNextFileW
_inet_internetfindnextfile_function
wininet.internetfindnextfile
wininet/InternetFindNextFile
wininet/InternetFindNextFileW
wininet\internetfindnextfile.htm
wininet
7c53e399-b8a5-4cc0-9ef6-88d9a525d87f
12/05/2018
InternetFindNextFile, InternetFindNextFile function [WinINet], InternetFindNextFileA, InternetFindNextFileW, _inet_internetfindnextfile_function, wininet.internetfindnextfile, wininet/InternetFindNextFile, wininet/InternetFindNextFileA, wininet/InternetFindNextFileW
wininet.h
Windows
Windows 2000 Professional [desktop apps only]
Windows 2000 Server [desktop apps only]
InternetFindNextFileW (Unicode) and InternetFindNextFileA (ANSI)
Wininet.lib
Wininet.dll
Windows
19H1
InternetFindNextFileW
wininet/InternetFindNextFileW
c++
APIRef
kbSyntax
DllExport
Wininet.dll
InternetFindNextFile
InternetFindNextFileA
InternetFindNextFileW

InternetFindNextFileW function

-description

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

Windows XP and Windows Server 2003 R2 and earlier:  Or continues a file search as a result of a previous call to GopherFindFirstFile.

-parameters

-param hFind [in]

Handle returned from either FtpFindFirstFile or
InternetOpenUrl (directories only).

Windows XP and Windows Server 2003 R2 and earlier:  Also a handle returned from GopherFindFirstFile.

-param lpvFindData [out]

Pointer to the buffer that receives information about the 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.

Windows XP and Windows Server 2003 R2 and earlier:  The Gopher protocol returns a GOPHER_FIND_DATA structure.

-returns

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.

-remarks

Note  WinINet does not support server implementations. In addition, it should not be used from a service. For server implementations or services use Microsoft Windows HTTP Services (WinHTTP).
 

Note

The wininet.h header defines InternetFindNextFile as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

-see-also

Enabling Internet Functionality

WinINet Functions