o

sbt.io

HiddenFileFilter

object HiddenFileFilter extends FileFilter with PathFilter with Product with Serializable

A FileFilter that selects files that are hidden according to java.nio.file.Files.isHidden or if they start with a dot (.).

Linear Supertypes
Serializable, Serializable, Product, Equals, PathFilter, FileFilter, java.io.FileFilter, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HiddenFileFilter
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. PathFilter
  7. FileFilter
  8. FileFilter
  9. AnyRef
  10. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def &&(filter: FileFilter): FileFilter

    Constructs a filter that accepts a File if it matches both this filter and the given filter.

    Constructs a filter that accepts a File if it matches both this filter and the given filter.

    Definition Classes
    FileFilter
  2. def --(filter: FileFilter): FileFilter

    Constructs a filter that accepts a File if it matches this filter but does not match the given filter.

    Constructs a filter that accepts a File if it matches this filter but does not match the given filter.

    Definition Classes
    FileFilter
  3. def accept(path: java.nio.file.Path, attributes: FileAttributes): Boolean

    Checks whether a path should be included on the basis of its name and sbt.nio.file.FileAttributes.

    Checks whether a path should be included on the basis of its name and sbt.nio.file.FileAttributes.

    path

    the path name

    attributes

    the file attributes corresponding to path

    returns

    true if the filter accepts the path

    Definition Classes
    HiddenFileFilterPathFilter
  4. def accept(file: File): Boolean
    Definition Classes
    HiddenFileFilter → FileFilter
  5. def unary_-: FileFilter

    Constructs a filter that accepts a File if it does not match this filter.

    Constructs a filter that accepts a File if it does not match this filter.

    Definition Classes
    HiddenFileFilterFileFilter
  6. def ||(filter: FileFilter): FileFilter

    Constructs a filter that accepts a File if it matches either this filter or the given filter.

    Constructs a filter that accepts a File if it matches either this filter or the given filter.

    Definition Classes
    FileFilter