Quick question about copying multiple files to FTP

Hi,

I'm creating a button to copy multiple files to ftp.

I can do it this way:

Copy "file1.png" TO="FTP://...@mydomain.com//images/" 
Copy "file2.png" TO="FTP://...@mydomain.com//images/" 
Copy "file3.png" TO="FTP://...@mydomain.com//images/" 

But I guess there's a way to do it in one line (I would like to avoid opening few connections), but I couldn't find any.

Any suggestions?
Thanks.

You can specify all the files on the one line, e.g.

Copy "file1.png" "file2.png" "file3.png" TO="FTP://...@mydomain.com//images/"

DOH!

And I tried to put comma between them...
Thanks.