ftp automation

ScriptFTP

The professional tool to automate FTP, SFTP, FTPS and schedule FTP batch jobs

The forum is now read only. Please, go to the the main ScriptFTP website if you need help.
Need help writing a script? Have any question about ScriptFTP?
I would like to automate the following two FTP transfers in parallel:
Repeated download of a 200MB file to an FTP server
Repeated upload of a 50MB file to the same FTP server

Please let me know if this is possible using ScriptFTP and how I can setup this test.

I need also to know if I can use the ScriptFTP tool as a trial and for how long. If I find this tool helpful then I will purchase it. Please let me know

Thank you

-DJ
I need also to know if I can use the ScriptFTP tool as a trial and for how long. If I find this tool helpful then I will purchase it.
The trial can be used for 30 days, there is no other limitations apart from the 30-day limit.
I would like to automate the following test:
Repeat download of a 200MB file to an FTP server
At the same time repeat upload of a 50MB file to that same
FTP server
A script file cannot launch multiple transfers (upload or download) at the same time. ScriptFTP always works step by step. But you can create two different scripts and launch both as you can open as many ScriptFTP windows as you want.

The repeated download can be done like this:

[scriptftp="download.ftp"]#Connect
OPENHOST("ftp.myhost.com","usernamehere","passwordhere")

# Change current local directory (files will be downloaded here)
LOCALCHDIR("C:\path_to\my_destination_dir")

WHILE(TRUE)
GETFILE("/path_to/the_file.zip")
END WHILE

CLOSEHOST[/ScriptFTP]


The script for the upload is very similar but instead of using GETFILE you should use PUTFILE.