appendLines

Platform and version requirements: JVM (1.5), JRE7 (1.5)
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.

Platform and version requirements: JVM (1.5), JRE7 (1.5)
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.

© 2010–2021 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.io.path/java.nio.file.-path/append-lines.html