FtpDeleteFile (Windows Embedded CE 6.0)
1/6/2010
This function deletes a file stored on the FTP server.
Syntax
BOOL WINAPI FtpDeleteFile(
HINTERNET hConnect,
LPCTSTR lpszFileName
);
Parameters
- hConnect
[in] Valid handle to an FTP session. This handle must have been returned by a previous call to the InternetConnect function.
- lpszFileName
[in] Long pointer to a null-terminated string that contains the file name to delete on the remote system.
Return Value
TRUE indicates success. FALSE indicates failure. To get extended error data, call GetLastError.
Remarks
The lpszFile parameter can be either partially or fully qualified file names relative to the current directory. A backward slash (\) or forward slash (/) can be used as the directory separator for either name. FtpDeleteFile translates the directory name separators to the appropriate character before they are used.
Requirements
Header | wininet.h |
Library | wininet.lib |
Windows Embedded CE | Windows CE 2.0 and later |