Originally posted by: AgaBooga
get WS_FTP and set it to auto logon
are you able to make it start up on its own though with Windows?
Originally posted by: FoBoT
use wget
i need to do something similar, but on a scheduled basis, so i am going to try the windows version of wget
GNU Wget
ftp download site
more info
Originally posted by: zimu
Originally posted by: FoBoT
use wget
i need to do something similar, but on a scheduled basis, so i am going to try the windows version of wget
GNU Wget
ftp download site
more info
i took a look at this, looks like its for downloading only...
Originally posted by: zimu
Is it possible to automatically upload by using FTP a file onto a server when you start the computer?
i was thinking of using the dos ftp prompt and just building a batch file, but i can't figure out how to automatically enter username/password.
can anyone help?
thanks!
Create a text document with commands used when in FTP. Below is an example of what such a script may look like:
open ftp.domain.com
username
password
cd public_html
dir
get file.txt
bye