Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.How to delete file with ftp and curl plugin?

Answer: You can set post/pre quotes to have ftp commands executed before or after the download/upload.
Example
dim d as CURLMBS // your curl object

// delete file
dim ws() As String
ws.Append "DELE Temp.txt"

d.SetOptionPostQuote(ws)

Use SetOptionPostQuote, SetOptionPreQuote or SetOptionQuote.
The ftp commands you pass here are native ftp commands and not the commands you use with ftp applications. To delete use DELE and the file path.


The biggest plugin in space...