FTP Script Authentication

Hi there,

Just wondering how you authenticate FTP scripts without writing the username and password?

Copy FILE "C:\app-source\source\app.htm" TO ftp://@Name/

Copy FILE "C:\app-source\source\app\css\viewer.css" TO ftp://@Name/app/css/

Delete FILE ftp://@Name/app/theme.js

I can get the scripts to work, but I cant get it to connect to the address book. So currently I would require to type the user/password each time

Currently I have in the FTP Address book

  • Default Settings
  • Sites

If I double click on it, it logs in, so I have it setup correctly, with the password saved.

So how do I script to the address book item, so I dont need to pass username and passwords in the script?

Just to explain to me how the name is passed, and how it is connected to the address book saved password.

Thanks

Copy TO=@Name

Thanks, can you be a little more explicit? How do you pass the ftp address with that.

The site name prefixed with @ will be enough:

FTP Paths

Thankyou, success

Copy FILE "C:\app-source\source\app.htm" TO=@name...

I get it now