Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

including FTP in word?

 [1/2] from: slok00::yahoo::com at: 31-Jul-2001 3:31


if I have declare something like this: path_of_filename: %name.r how can I include the FTP protocol, username and password into it? path_of_filename: %ftp://username:[password--host]/name.r thanks YekSoon

 [2/2] from: carl:cybercraft at: 31-Jul-2001 22:54


On 31-Jul-01, Lok Yek Soon wrote:
> if I have declare something like this: > path_of_filename: %name.r > how can I include the FTP protocol, username and > password into it? > path_of_filename: %ftp://username:[password--host]/name.r
You don't need the "%" with an ftp path - ie... path_of_filename: ftp://username:[password--host]/name.r You can also join paths and filenames. ie...
>> path_of_filename: join ftp://username:[password--host]/ %name.r
== ftp://username:[password--host]/name.r I hope that helps.
> thanks > YekSoon
-- Carl Read [carl--cybercraft--co--nz]