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

[REBOL] Re: Reading empty directories via FTP error

From: atruter:labyrinth:au at: 12-Nov-2003 10:52

OK, it can't get much simpler than this. A fresh rebol session with the following console commands:
>> site: ftp://userid:[password--www--site--com--au]/public_html/
== ftp://userid:[password--www--site--com--au]/public_html/
>> write site/test/a "a"
connecting to: www.site.com.au
>> write site/test/b "b"
** User Error: Server error: FTP 226-File successfully transferred ** Near: write site/test/b "b"
>> read site/test
connecting to: www.site.com.au ** User Error: Server error: tcp 550 I can only retrieve regular files ** Near: read site/test It makes no difference whether the test directory is empty to start with or not, or what order the above commands are given in. The first [write] command works, subsequent ones fail. I've also tried: system/schemes/ftp/passive: true and / or cache-size: 0 with no effect. Any ideas? Regards, Ashley