Open abstract instantiable class
The class of single-buffered streams over disk files.
<buffered-stream> <positionable-stream>
locator:<string> or <locator>. This specifies the file over which to stream.
direction:#"input", #"output", or #"input-output". Default value: #"input".
if-exists:#f, #"new-version", #"overwrite", #"replace", #"append", #"truncate", #"signal". Default value: #f.
if-does-not-exist: One of #f, #"signal", or #"create". Default value: depends on the value of direction:.
asynchronous?:#t, all writes on this stream are performed asynchronously. Default value: #f.
io
streams
The class of single-buffered streams over disk files. It is a subclass of <positionable-stream> and <buffered-stream>.
When you instantiate this class, an indirect instance of it is created. The file being streamed over is opened immediately upon creating the stream.
The class supports several init-keywords: locator:, direction:, if-exists:, and if-does-not-exist:.