append
Writes the contents of a Buffer to the file associated with the abstract pathname. If the file exists, all new data will be appended to the end of the file.
Parameters
excl
The OpenExcl desired for this open operation. If null, then OpenExcl.MaybeCreate.DEFAULT will be used.
Throws
UnsupportedOperationException
If Node.js is not being used.
Writes the remaining contents of src to the file. If the file exists, all new data will be appended to the end of the file.
Return
The number of bytes written to the file.
Parameters
excl
The OpenExcl desired for this open operation. If null, then OpenExcl.MaybeCreate.DEFAULT will be used.
src
of bytes to write.