vote up 0 vote down star

i want to automate the task of uploading of a file at FTP site "uploads.google.com" how can i achive this

flag

2 Answers

vote up 0 vote down

One of the example is depicted as follows :

  1. Prepare a file (say ftp_cmd.txt)with all the ftp commands to upload the files to our specific site as below:


binary cd mput file.*

bye

  1. Now create a batch file with the following content:

ftp -i -v -s:

ex: ftp -i -v -s:ftp_cmd.txt updates.google.com

Now, when you execute this batch file, it will put all files with format file.* to the specified directory.

link|flag
vote up 1 vote down

hi please see here for example

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.