delete

Delete file on FTP server

Description

example

delete(ftpobj,filename) deletes the specified file from the current folder on the FTP server associated with ftpobj.

Examples

collapse all

Connect to an FTP server and delete a file. This example shows a hypothetical FTP session on ftp.example.com, a machine that does not exist. If you have an account on an FTP server that grants you permission to upload and delete files on that server, then you can use the delete function as shown in this example.

First, connect to the server.

ftpobj = ftp('ftp.example.com')
ftpobj = 

  FTP Object
     host: ftp.example.com
     user: anonymous
      dir: /
     mode: binary

Display the contents of the current folder on the FTP server.

dir(ftpobj)
 
myscript.m                  README.txt                pub    

Delete the file named README.txt.

delete(ftpobj,'README.txt')

Display the updated contents of the current folder. The README.txt file is no longer available for download.

dir(ftpobj)
 
myscript.m                  pub  

Input Arguments

collapse all

Connection to an FTP server, specified as an FTP object.

Name of the file to delete, specified as a character vector or string scalar.

See Also

|

Introduced before R2006a