append

fnvoid append(R)(R name, const void[] buffer) if ((isSomeFiniteCharInputRange!R || isSomeString!R) && !isConvertibleToString!R)

Appends buffer to file name.

Creates the file if it does not already exist.

Parameters

namestring or range of characters representing the file _name
bufferdata to be appended to file

Throws

FileException on error.
fnvoid append(R)(auto ref R name, const void[] buffer) if (isConvertibleToString!R)

ditto