3

I have been trying to find a replacement to FileZilla which is a good program, but it doesn't allow yet to schedule files to transfer from time to time. I run into some, but they are all supported by Windows, (WinSCP and FTP Voyager). Is there something like that, or does it have to be made by scripting?

I have Raspbian DebianĀ 7 (Wheezy) installed.

Script to be executed with cron:

cd /home/website/.wine/dosdevices/c:/_Auchan/_path
smbclient //sanfiler01.corp.pt.auchan/FTP_Externo -D "WEBSITE/_Auchan/_SOMETHING/" -U "corpauchanpt\sup_website" AKne123! -c "prompt; mget *; exit"

Changed to:

cd /var/www/LRD/musica/easy
smbclient //website.pt/FTP_Externo -D "website/xv01ZT/01/" -U corpauchanpt\sup_website" AKne123! -c "prompt; mget *; exit"
angelfmf
  • 33
  • 1
  • 5

3 Answers3

3

Take a look at rsync. It supports incremental file transfer, and you can schedule your backups with cron or any other scheduling tool.

Ayman Khamouma
  • 252
  • 2
  • 12
1

Why not use FileZilla? The GUI doesn't support scheduled operations, but you can do that with cron/windows scheduled tasks and the command line. The last example on the documentation page even explains how to use saved machines/credentials.

Example:

filezilla ftp://username:password@ftp.server2.com --local="C:\server2 downloads"

Example with different paths and sftp instead of ftp:

filezilla sftp://username:password@192.168.0.3:22/directory_path_here -- local="/home/pi/directory/file"

Documentation: https://wiki.filezilla-project.org/Command-line_arguments_(Client)

Jacobm001
  • 11,904
  • 7
  • 47
  • 58
1

Try CyberDuck. I use this to access the Raspberry PI files. Easy to use and free.

PhillyNJ
  • 1,210
  • 2
  • 16
  • 28