Learn about the best Wing FTP Server alternatives for your Managed File Transfer (MFT) software needs. Read user reviews of FileZilla, IBM Aspera on Cloud, and more. Wing FTP Server 6 Promo deal, Shopping. Note: Once at the shopping cart web page, please fill the number into the quantity blank to purchase this product.
Fri Dec 07, 2012 10:18 am
require('socket.ftp')
require('socket.ltn12')
--send the file to the first FTP server
f, e = put{
host = '192.168.0.100',
user = 'user1',
password = 'pass1',
port = 21,
argument = '/%FileName',
source = source.file(io.open('%PathName', 'rb'))
}
--send the file to the second FTP server
f, e = put{
host = '192.168.0.105',
user = 'user2',
password = 'pass2',
port = 21,
argument = '/ftpfolder/%FileName',
source = source.file(io.open('%PathName', 'rb'))
}