object FileManager

Source
FileManager.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FileManager
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. def compareContents(original: Seq[String], revised: Seq[String], originalName: String = "a", revisedName: String = "b"): String

    Compares two lists of lines using difflib to produce a unified diff.

    Compares two lists of lines using difflib to produce a unified diff.

    returns

    the unified diff of the origLines and newLines or the empty string if they're equal

  7. def compareFiles(original: java.io.File, revised: java.io.File): String

    Compares two files using difflib to produce a unified diff.

    Compares two files using difflib to produce a unified diff.

    original

    the first file to be compared

    revised

    the second file to be compared

    returns

    the unified diff of the compared files or the empty string if they're equal

  8. def copyFile(from: java.io.File, dest: java.io.File): Boolean
  9. def dirsWithPrefix(dir: Directory, name: String): Iterator[Directory]
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def getLogFile(file: java.io.File, kind: String): java.io.File
  15. def getLogFile(dir: java.io.File, fileBase: String, kind: String): java.io.File
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def jarsWithPrefix(dir: Directory, name: String): Iterator[SFile]
  19. def joinPaths(paths: List[Path]): String
  20. def logFileExists(file: java.io.File, kind: String): Boolean
  21. def mapFile(file: java.io.File, replace: (String) => String): Unit
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def overwriteFileWith(dest: java.io.File, file: java.io.File): Boolean
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  31. def withTempFile[A](outFile: java.io.File, fileBase: String, lines: Seq[String])(body: (java.io.File) => A): A

Inherited from AnyRef

Inherited from Any

Ungrouped