Class

fm.lazyseq.Implicits

LazySeqRichFile

Related Doc: package Implicits

Permalink

implicit final class LazySeqRichFile extends AnyVal

Adds a few helpers to java.io.File (which aren't in fm-common since they depend on fm-lazyseq)

Linear Supertypes
AnyVal, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LazySeqRichFile
  2. AnyVal
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LazySeqRichFile(file: File)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val file: File

    Permalink
  6. def getClass(): Class[_ <: AnyVal]

    Permalink
    Definition Classes
    AnyVal → Any
  7. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  8. def recursiveDirs(maxDepth: Int = Int.MaxValue, followSymLinks: Boolean = false, depthFirstDirs: Boolean = false, ignoreDotFiles: Boolean = true): LazySeq[File]

    Permalink

    Recursively list all directories under a directory as a LazySeq

    Recursively list all directories under a directory as a LazySeq

    NOTE: This filters out directories or files that start with a dot (.)

    maxDepth

    Using 1 will only return dirs under the directory that this is being called on

  9. def recursiveFiles(maxDepth: Int = Int.MaxValue, followSymLinks: Boolean = false, ignoreDotFiles: Boolean = true): LazySeq[File]

    Permalink

    Recursively list all files under a directory as a LazySeq

    Recursively list all files under a directory as a LazySeq

    NOTE: This filters out directories or files that start with a dot (.)

    maxDepth

    Using 1 will only return files under the directory that this is being called on

  10. def recursiveFilesAndDirs(maxDepth: Int = Int.MaxValue, followSymLinks: Boolean = false, ignoreDotFiles: Boolean = true, depthFirstDirs: Boolean = false): LazySeq[File]

    Permalink

    Recursively list both files and directories under a directory as a LazySeq

    Recursively list both files and directories under a directory as a LazySeq

    NOTE: This filters out directories or files that start with a dot (.)

    maxDepth

    Using 1 will only return files and dirs under the directory that this is being called on

  11. def toString(): String

    Permalink
    Definition Classes
    Any

Inherited from AnyVal

Inherited from Any

Ungrouped