FileUtils

aptus.aptutils.FileUtils
object FileUtils

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
FileUtils.type

Members list

Value members

Concrete methods

def appendToGzipFile(out: FilePath, value: String): OutputFilePath
def appendToPlainFile(out: FilePath, value: String): OutputFilePath
def readFileLines(path: FilePath): List[String]
def streamFileLines(path: FilePath): (Iterator[String], Closeable)
def writeContent(path: FilePath, content: Content): FilePath
def writeGzipContent(path: FilePath, content: Content): FilePath
def writeGzipLines(path: FilePath, values: Seq[Line]): FilePath
def writeGzipLines(out: FilePath, flushModulo: Long, logModulo: Option[Long => Unit])(iter: Iterator[Line]): OutputFilePath
def writeLines(path: FilePath, values: Seq[Line]): FilePath
def writePlainContent(path: FilePath, content: Content): FilePath
def writePlainLines(path: FilePath, values: Seq[Line]): FilePath