package io
- Alphabetic
- Public
- All
Type Members
- final class AndFilter extends AbstractAndFilter
- final class AndNameFilter extends AbstractAndFilter with NameFilter
- sealed trait BaseSyntax extends AnyRef
-
final
class
CopyOptions extends Serializable
The options for the copy operation in
IO
. -
final
class
ExactFileFilter extends FileFilter
A FileFilter that only accepts a single input file.
-
final
class
ExactFilter extends NameFilter
A NameFilter that accepts a name if it is exactly equal to
matchName
. -
final
class
ExtensionFilter extends NameFilter
Represents a filter for files that end in a given list of extensions.
-
trait
FileFilter extends java.io.FileFilter
A
java.io.FileFilter
with additional methods for combining filters. - sealed abstract class IOSyntax0 extends IOSyntax1
- sealed abstract class IOSyntax1 extends BaseSyntax
- final class LinkOptionPath extends RichNioPath
- abstract class Mapper extends AnyRef
-
trait
NameFilter extends FileFilter
A filter on Strings.
A filter on Strings. This also functions as a FileFilter by applying the String filter to the value of a File's
getName
. - final class NotFilter extends AbstractNotFilter
- final class NotNameFilter extends AbstractNotFilter with NameFilter
- final class OrFilter extends AbstractOrFilter
- final class OrNameFilter extends AbstractOrFilter with NameFilter
-
sealed abstract
class
PathFinder extends PathLister with PathFinderDefaults
A path finder constructs a set of paths.
A path finder constructs a set of paths. The set is evaluated by a call to the
get
method. The set will be different for different calls toget
if the underlying filesystem has changed. - sealed trait PathFinderDefaults extends Combinator
- sealed trait PathLister extends AnyRef
-
final
class
PatternFilter extends NameFilter
A NameFilter that accepts a name if it matches the regular expression defined by
pattern
. - final class PrefixFilter extends NameFilter
- final class RichFile extends AnyVal with RichNioPath
- sealed trait RichNioPath extends Any
-
sealed
class
SimpleFileFilter extends FileFilter
A FileFilter that selects files according the predicate
acceptFunction
. -
sealed
class
SimpleFilter extends NameFilter
A NameFilter that accepts a name if the predicate
acceptFunction
accepts it. - final class SuffixFilter extends NameFilter
- abstract class Using[Source, T] extends AnyRef
-
trait
WatchService extends AnyRef
A service that will monitor the file system for file creation, deletion and modification.
Value Members
-
object
AllPassFilter extends NameFilter with Product with Serializable
A NameFilter that accepts all names.
A NameFilter that accepts all names. That is,
accept
always returnstrue
. - object CopyOptions extends Serializable
-
object
DirectoryFilter extends FileFilter with PathFilter with Product with Serializable
A FileFilter that selects files that are a directory according to
java.io.File.isDirectory
. -
object
ExistsFileFilter extends FileFilter with Product with Serializable
A FileFilter that selects files that exist according to
java.io.File.exists
. - object ExtensionFilter
- object FileFilter
-
object
GlobFilter
Constructs a filter from a String, interpreting wildcards.
Constructs a filter from a String, interpreting wildcards. See the GlobFilter.apply method.
- object Hash
-
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 (.
). -
object
IO
A collection of File, URL, and I/O utility methods.
- object JavaMilli extends MilliMilliseconds
- object NameFilter
-
object
NothingFilter extends NameFilter with Product with Serializable
A NameFilter that accepts nothing.
A NameFilter that accepts nothing. That is,
accept
always returnsfalse
. - object Path extends Mapper
- object PathFinder
- object PathLister
-
object
RegularFileFilter extends FileFilter with PathFilter with Product with Serializable
A FileFilter that selects files that are a directory according to
java.io.File.isFile
. - object Using
- object WatchService
- object syntax extends IOSyntax0