Main Content
FTP File Operations
Access files on FTP server
Connect to an FTP server using ftp
, and then perform remote operations
such as downloading files or managing folders.
Functions
ftp | Connection to FTP server to access its files |
sftp | Connection to SFTP server to access its files (Since R2021b) |
ascii | Set FTP transfer mode to ASCII |
binary | Set FTP transfer mode to binary |
cd | Change or view current folder on SFTP or FTP server |
close | Close connection to SFTP or FTP server |
delete | Delete file on SFTP or FTP server |
dir | List folder contents on SFTP or FTP server |
mget | Download files from SFTP or FTP server |
mkdir | Make new folder on SFTP or FTP server |
mput | Upload file or folder to SFTP or FTP server |
rename | Rename file on SFTP or FTP server |
rmdir | Remove folder on SFTP or FTP server |
Topics
- Perform FTP File Operations
Connect to an FTP server and perform remote operations such as downloading and uploading files, creating and deleting folders, and listing contents on the server.