FtpDeleteFile (wininet)
Last changed: anonymous

.
Summary
Deletes a file stored on the FTP server.

C# Signature:

[DllImport("wininet.dll", SetLastError = true, CharSet = CharSet.Auto)]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool FtpDeleteFile(IntPtr hConnect, string fileName);

VB Signature:

Declare Function FtpDeleteFile Lib "wininet.dll" _
   (ByVal hConnect As IntPtr, ByVal fileName As String) _
   As <MarshalAs(UnmanagedType.Bool)> Boolean

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation

Direct Link: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet/FtpDeleteFile.asp