Currently I'm using DOS FTP to FTP files to a remote FTP site. I create a ftp.txt file containing the following:
open <ip>
user <username>
pwd <password>
bin
put <filepath>
disconnect
I then issue a '! ftp -s:ftp.txt' command. The ip, username, and password information for each site are stored in a database table. Each time I need to put files to a different FTP site I create a new ftp.txt file. Can anyone think of a better way to manage this or know of other tools/methods other than DOS FTP that can be used? Thanks for the help.
open <ip>
user <username>
pwd <password>
bin
put <filepath>
disconnect
I then issue a '! ftp -s:ftp.txt' command. The ip, username, and password information for each site are stored in a database table. Each time I need to put files to a different FTP site I create a new ftp.txt file. Can anyone think of a better way to manage this or know of other tools/methods other than DOS FTP that can be used? Thanks for the help.