FileBuilder

trait FileBuilder extends Sink with Source
trait Source
trait Sink
class Object
trait Matchable
class Any

Value members

Abstract methods

def #<<(f: File): ProcessBuilder

Append the contents of a java.io.File to this file

Append the contents of a java.io.File to this file

Source:
ProcessBuilder.scala
def #<<(u: URL): ProcessBuilder

Append the contents from a java.net.URL to this file

Append the contents from a java.net.URL to this file

Source:
ProcessBuilder.scala
def #<<(i: => InputStream): ProcessBuilder

Append the contents of a java.io.InputStream to this file

Append the contents of a java.io.InputStream to this file

Source:
ProcessBuilder.scala

Append the contents of a scala.sys.process.ProcessBuilder to this file

Append the contents of a scala.sys.process.ProcessBuilder to this file

Source:
ProcessBuilder.scala

Inherited methods

Reads the output of a scala.sys.process.ProcessBuilder into the input stream of this process.

Reads the output of a scala.sys.process.ProcessBuilder into the input stream of this process.

Inherited from:
Sink
Source:
ProcessBuilder.scala
def #<(in: => InputStream): ProcessBuilder

Reads the given InputStream into the input stream of this process.

Reads the given InputStream into the input stream of this process. The argument is call-by-name, so the stream is recreated, read, and closed each time this process is executed.

Inherited from:
Sink
Source:
ProcessBuilder.scala
def #<(f: URL): ProcessBuilder

Reads the given URL into the input stream of this process.

Reads the given URL into the input stream of this process.

Inherited from:
Sink
Source:
ProcessBuilder.scala
def #<(f: File): ProcessBuilder

Reads the given file into the input stream of this process.

Reads the given file into the input stream of this process.

Inherited from:
Sink
Source:
ProcessBuilder.scala

Writes the output stream of this process to a scala.sys.process.ProcessBuilder.

Writes the output stream of this process to a scala.sys.process.ProcessBuilder.

Inherited from:
Source
Source:
ProcessBuilder.scala
def #>(out: => OutputStream): ProcessBuilder

Writes the output stream of this process to the given OutputStream.

Writes the output stream of this process to the given OutputStream. The argument is call-by-name, so the stream is recreated, written, and closed each time this process is executed.

Inherited from:
Source
Source:
ProcessBuilder.scala
def #>(f: File): ProcessBuilder

Writes the output stream of this process to the given file.

Writes the output stream of this process to the given file.

Inherited from:
Source
Source:
ProcessBuilder.scala
def #>>(f: File): ProcessBuilder

Appends the output stream of this process to the given file.

Appends the output stream of this process to the given file.

Inherited from:
Source
Source:
ProcessBuilder.scala

Returns a scala.sys.process.ProcessBuilder representing this Source.

Returns a scala.sys.process.ProcessBuilder representing this Source.

Inherited from:
Source
Source:
ProcessBuilder.scala
protected def toSink: ProcessBuilder
Inherited from:
Sink
Source:
ProcessBuilder.scala
protected def toSource: ProcessBuilder
Inherited from:
Source
Source:
ProcessBuilder.scala