Aug. 8, 2012
6:40 p.m.
in pharo 1.4 #fileStream and #fileStreamDo: & Co are not working properly...
Cami, are you sure? I've been using #fileStreamDo: in 1.4, and it seems to eventually send: openFileStream: path writable: writable | fullPath | fullPath := self stringFromPath: path. "redirect over the default implementation" ^ writable ifFalse: [ FileStream readOnlyFileNamed: fullPath ] ifTrue: [ FileStream fileNamed: fullPath ] which returns aFileStream
Sean
ah ok, so then maybe it's only writeStream / readStream | do?