object FileManager
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- FileManager
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
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
andnewLines
or the empty string if they're equal
-
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
- def copyFile(from: java.io.File, dest: java.io.File): Boolean
- def dirsWithPrefix(dir: Directory, name: String): Iterator[Directory]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- def getLogFile(file: java.io.File, kind: String): java.io.File
- def getLogFile(dir: java.io.File, fileBase: String, kind: String): java.io.File
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def jarsWithPrefix(dir: Directory, name: String): Iterator[SFile]
- def joinPaths(paths: List[Path]): String
- def logFileExists(file: java.io.File, kind: String): Boolean
- def mapFile(file: java.io.File, replace: (String) ⇒ String): Unit
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- def overwriteFileWith(dest: java.io.File, file: java.io.File): Boolean
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
- def withTempFile[A](outFile: java.io.File, fileBase: String, lines: Seq[String])(body: (java.io.File) ⇒ A): A