appendLines
@ExperimentalPathApi fun Path.appendLines(
lines: Iterable<CharSequence>,
charset: Charset = Charsets.UTF_8
): Path
Appends the specified collection of char sequences lines to a file terminating each one with the platform's line separator.
Parameters
charset
- character set to use for writing text, UTF-8 by default.
@ExperimentalPathApi fun Path.appendLines(
lines: Sequence<CharSequence>,
charset: Charset = Charsets.UTF_8
): Path
Appends the specified sequence of char sequences lines to a file terminating each one with the platform's line separator.
Parameters
charset
- character set to use for writing text, UTF-8 by default.