You are here

6 calls to drupal_ftp_connect() in Backup and Migrate 7.2

drupal_ftp_change_directory in includes/destinations.ftp.inc
The drupal_ftp_change_directory Function This function simply changes into the $directory folder on the FTP server. If a connection or permission error occurs then _backup_migrate_message() will contain the error message.
drupal_ftp_create_directory in includes/destinations.ftp.inc
The drupal_ftp_create_directory Function This function tries to make a new directory called $folder_name on the FTP server. If it can create the folder, then the folder is given appropriate rights with the CHMOD command.
drupal_ftp_delete_file in includes/destinations.ftp.inc
The drupal_ftp_delete_file Function This function attempts to delete a file called $filename from the FTP server.
drupal_ftp_delete_folder in includes/destinations.ftp.inc
The drupal_ftp_delete_folder Function This function was one of the hardest to write. It recursively deletes all files and folders from a directory called $folder_name.
drupal_ftp_file_to_ftp in includes/destinations.ftp.inc
Send a file to an FTP server.
drupal_ftp_ftp_to_file in includes/destinations.ftp.inc
This function tries to retrieve the contents of a file from the FTP server. Firstly it changes into the $directory directory, and then attempts to download the file $filename. The file is saved locally and its contents are returned to the caller of…