tango.io.stream.DataFile

License:

BSD style: see license.txt

Version:

Initial release: Nov 2007

Author:

Kris
class DataFileInput : DataInput #
Composes a seekable file with buffered binary input. A seek causes the input buffer to be cleared.
this(char[] path, File.Style style = File.ReadExisting) #
Compose a FileStream.
this(File file) #
Wrap a File instance.
File file() [final] #
Return the underlying conduit.
class DataFileOutput : DataOutput #
Composes a seekable file with buffered binary output. A seek causes the output buffer to be flushed first.
this(char[] path, File.Style style = File.WriteCreate) #
Compose a FileStream.
this(File file) #
Wrap a FileConduit instance.
File file() [final] #
Return the underlying conduit.