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.
Missing any feature or command? Post your ideas here. Suggestions are welcome.
Hi,

three suggestions:

1.
a nice feature would be the ability to add timestamps to the logfile entries.

PRINT("Logfile entry")
would show up in the Logfile as

"2014-04-03 14:43:02 Logfile entry"

2.
Can you add the ability to call subroutines? Maybe like Windows-Batch?

Example:
Code: Select allCALL :PRINTNAME "Joerg" CALL :PRINTNAME "Peter" GOTO :EOF :PRINTNAME PRINT("My Name is " . $1) :EOF
3.
The ability to include other Scripts
For exmaple:

defaults.ftp
Code: Select all$example="hi, I'm a default"
main.ftp
Code: Select allINCLUDE("defaults.ftp") PRINT($example)
bye,
Joerg