Download ScriptFTP 1.0
Contacting third-party download site... please
wait.
If your download does not start automatically
within 5 seconds, choose a mirror below:
ScriptFTP 1.0 Mirror 1
ScriptFTP 1.0 Mirror 2
Automate your file transfers using ScriptFTP, a script driven FTP client. Repetitive tasks like synchronizing files, backups and web server updates are made easier and faster by using ScriptFTP. There is also an integrated scheduler to program the script execution.
Writing a script file is fairly simple. Take a look at this automated transfer example:
# Update my web in myhost.com
FTPOPENHOST("ftp.myhost.com","user","pass")
LOCALCHDIR("C:LocalWebFolder")
FTPPUTFILE("*.*",SYNC,SUBDIRS)
FTPCLOSEHOST()
ScriptFTP reads this text file and execute all the FTP commands automatically. |