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 (.
).
- Alphabetic
- By Inheritance
- HiddenFileFilter
- Serializable
- Serializable
- Product
- Equals
- PathFilter
- FileFilter
- FileFilter
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
def
&&(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches both this filter and the givenfilter
.Constructs a filter that accepts a
File
if it matches both this filter and the givenfilter
.- Definition Classes
- FileFilter
-
def
--(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches this filter but does not match the givenfilter
.Constructs a filter that accepts a
File
if it matches this filter but does not match the givenfilter
.- Definition Classes
- FileFilter
-
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
- HiddenFileFilter → PathFilter
-
def
accept(file: File): Boolean
- Definition Classes
- HiddenFileFilter → FileFilter
-
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
- HiddenFileFilter → FileFilter
-
def
||(filter: FileFilter): FileFilter
Constructs a filter that accepts a
File
if it matches either this filter or the givenfilter
.Constructs a filter that accepts a
File
if it matches either this filter or the givenfilter
.- Definition Classes
- FileFilter