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

[REBOL] Re: hlep

From: petr:krenzelok:trz:cz at: 18-Jun-2001 15:20

Elisabeth FRANCOIS wrote:
> PLEASE HELP ME !!! > > I use this to save file on local : > > A: rejoin [nom/text "-filtres.txt"] > write to-file A texte > > and it works! > But when I want to do it on a ftp-sever, I do this : > > B: join ["ftp://login:[pass--ftp--ftpserver--com]/directory/" nom/text > "-filtres.txt"] > write B texte > > and it does not work !
'join or 'rejoin accept two parameters. The first one you provide, will be joined with the rest of the block ... B: join ftp://login:[pass--ftp--ftpserver--com]/directory/ [nom/text -filtres.txt ] note: first type is url! - you don't need to convert it to-file or to-url anymore ... -pekr-