object IOUtils extends Logging
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- IOUtils
- Logging
- 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
- @native() @throws( ... )
- def copyFile(src: File, dest: File): IO[Unit]
- def createTmpDir(prefix: String): IO[File]
- val dotDirs: List[String]
-
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
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isNormalDirectory(f: File): Boolean
- def listFiles(f: File): IO[Array[File]]
-
val
log: Logger
- Attributes
- protected
- Definition Classes
- Logging
- def makeDirectory(dir: File): IO[Unit]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def overwriteFile(s: String, f: File): IO[Unit]
- def readFileToString(f: File): IO[String]
- def readPropertiesFile(f: File): IO[Properties]
- def readPropertiesFile(s: String): IO[Properties]
-
def
recursiveDelete(file: File): IO[Unit]
Deletes
file, recursively if it is a directory. - def recursiveDelete(files: Seq[File]): IO[Unit]
-
def
recursiveDeleteEmptyDirs(startDir: File, upTo: File): IO[Unit]
Recursively deletes empty directories, stopping at the first non-empty dir.
-
def
safeWriteToFile(s: String, f: File): IO[Boolean]
Performs a safe write to the file.
Performs a safe write to the file. Returns true if the file was completely written, false otherwise
-
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
- @native() @throws( ... )
- def writeSeqToFile[A](s0: Seq[A], f: File): IO[Unit]
- def writeToFile(s: String, f: File, append: Boolean): IO[Unit]