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

[REBOL] Re: FTP scheme was Re: Reading empty directories via FTP error

From: nitsch-lists:netcologne at: 16-Nov-2003 9:58

Am Sonntag, 16. November 2003 05:12 schrieb Carl Read:
> Appologies to Brett, Gabriele and any others who've responded to my > missing file-names problem. > > The cause was REBOL's FTP path and my FTP clients' paths don't match. > The directory I was looking at with my clients was site/web/ but with > REBOL this needed to be site/../../web/ (ie, back up two > directories.) With REBOL, site/web/ is actually pointing to > site/../../user/web/ where user is a directory set aside for testing > and its web directory actually contains 10 files and directories that > match site/../../web/ > > Blugh! > > From this I assume my FTP clients can detect they need to start up two > directories from the host's URL, whereas REBOL can't. Would this be > possible? >
Newer rebols have it. try ftp://server// instead of ftp://server/ . a double slash behind the server-name. or explained in an other way: join ftp://server/ %/usr/local/ -Volker