WriteStream
js.node.events.EventEmitter → js.node.Stream → js.node.stream.Writable → js.node.fs.WriteStream (extern class)
Writable file stream.
Instance Members
path: js.node.FsPath
The path to the file the stream is writing to as specified in the first argument to Fs.createWriteStream
.
If path is passed as a string, then writeStream.path will be a string.
If path is passed as a Buffer, then writeStream.path will be a Buffer.
bytesWritten: Int
The number of bytes written so far. Does not include data that is still queued for writing.