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

[REBOL] Re: MAKE-DIR Problem

From: cal:prolific at: 26-Nov-2002 14:14

This appears to be a bug related to rebol FTP scheme's caching of connections. if you include the line: system/schemes/ftp/cache-size: 0 it will behave as expected (just a bit slower since it has to log in again for each command). To figure out what's going wrong with things like this, I usually do a trace/net on to see what rebol is doing when the failure happens, then look at the protocol source (by doing "print mold system/schemes/ftp/handler") to see if there is an easy fix. In this case I didn't see a simple way to fix the real problem, just this workaround.