BE_FTP_Delete

BE_FTP_Delete(url;{username;password})



Deletes a file at a specific ftp or sftp url.






Parameters:

- url : the ftp url of the file to be deleted.

- username : The username if the url requires authentication.

- password : The password if the url requires authentication.

Keywords:

FTP Delete


Version History:

- 3.2 :

Notes:

- Authentication types can be set with theBE_CurlSetOptionfunction.
Check for errors using the BE_GetLastError function and use https://curl.haxx.se/libcurl/c/libcurl-errors.html for error details.

Code Examples:

BE_FTP_Delete ( "ftp://example.com/path/folder/file.txt" )


BE_FTP_Delete ( "sftp://example.com:2000/path/folder/file.txt" ; "account" ; "password" )


Still need help? Contact Us Contact Us