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

[REBOL] Re: ftp problems

From: fantam:mailandnews at: 19-Feb-2001 19:52

> Have you tried using make-dir ? Does that present the same problems?
Yes: make-dir ftp://user:[password--ftp--xoom--com]/backup/id%E9es/ produces: ** User Error: URL error: ftp://user:[password--ftp--xoom--com]/backup/id%E9es/ But, unlike I stated in my previous email, it would also report an error if the encoding was in the filename part of the URL. The encoding algorithm I use is the following: foreach char url [ append new-url either char > 127 [ join "%" trim/with form to-binary char {#{}} ][char] ]