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

[REBOL] Re: Directory

From: ammon:addept:ws at: 14-Jan-2004 10:58

Yes, but the example you used still wouldn't work because your Temp variable holds a String! value rather than a File! value so you would still need to use TO-FILE. In most cases it would be better to just give your variable a File! value like so: Temp: %filename.txt That way you wouldn't have to convert it but if you need your variable to be a String! for some reason, just be sure to use TO-FILE like so: write/binary to-file Temp data HTH ~~Ammon ;->