FtpDeleteFileW function (wininet.h)
Deletes a file stored on the FTP server.
BOOL FtpDeleteFileW(
[in] HINTERNET hConnect,
[in] LPCWSTR lpszFileName
);
[in] hConnect
Handle returned by a previous call to InternetConnect using INTERNET_SERVICE_FTP.
[in] lpszFileName
Pointer to a null-terminated string that contains the name of the file to be deleted.
Returns TRUE if successful, or FALSE otherwise. To get a specific error message, call GetLastError.
The lpszFileName parameter can be either partially or fully qualified file names relative to the current directory.
Like all other aspects of the WinINet API, this function cannot be safely called from within DllMain or the constructors and destructors of global objects.
Note
The wininet.h header defines FtpDeleteFile as an alias that 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 is not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | wininet.h |
Library | Wininet.lib |
DLL | Wininet.dll |