LocalFile.write Member

Syntax

object.write(buf);

Arguments

ArgumentSummary
buf

Returns

Remarks

See Also

Source Code

function fo_write(buf)
{
if (!("outputStream" in this))
throw "file not open for writing.";
return this.outputStream.write(buf, buf.length);
}