package io

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. final class AndFilter extends AbstractAndFilter
  2. final class AndNameFilter extends AbstractAndFilter with NameFilter
  3. final class CopyOptions extends Serializable

    The options for the copy operation in IO.

  4. final class ExactFilter extends NameFilter

    A NameFilter that accepts a name if it is exactly equal to matchName.

  5. final class ExtensionFilter extends NameFilter

    Represents a filter for files that end in a given list of extensions.

  6. trait FileEventMonitor[+T] extends AutoCloseable

    Provides a blocking interface for awaiting events from an FileTreeDataView.Observable.

    Provides a blocking interface for awaiting events from an FileTreeDataView.Observable.

    T

    the type of FileTreeDataView.Entry.value instances

  7. trait FileFilter extends java.io.FileFilter

    A java.io.FileFilter with additional methods for combining filters.

  8. trait FileTreeDataView[+T] extends FileTreeView with AutoCloseable

    Provides a view into the file system that allows retrieval of the children of a particular path where each child has an associated FileTreeDataView.Entry that is generally derived from the file (e.g.

    Provides a view into the file system that allows retrieval of the children of a particular path where each child has an associated FileTreeDataView.Entry that is generally derived from the file (e.g. the FileTreeDataView.Entry.value may be the md5 hash of the underlying file). Specific implementations may or may not use a cache for retrieval. It extends FileTreeView since FileTreeView.list can be trivially implemented using listEntries.

  9. trait FileTreeRepository[+T] extends Observable[T] with FileTreeDataView[T] with AutoCloseable

    Monitors registered directories for file changes.

    Monitors registered directories for file changes. A typical implementation will keep an in memory cache of the file system that can be queried in FileTreeRepository#listEntries. The FileTreeRepository#register method adds monitoring for a particular cache. A filter may be provided so that the cache doesn't waste memory on files the user doesn't care about. The cache may be shared across a code base so there additional apis for adding filters or changing the recursive property of a directory.

    T

    the type of the FileTreeDataView.Entry.values.

  10. trait FileTreeView extends AutoCloseable

    Provides a view into the file system that allows retrieval of the children of a particular path.

    Provides a view into the file system that allows retrieval of the children of a particular path. Specific implementations may or may not use a cache for retrieval.

  11. sealed abstract class IOSyntax0 extends IOSyntax1
  12. sealed abstract class IOSyntax1 extends AnyRef
  13. final class LinkOptionPath extends RichNioPath
  14. class MacOSXWatchService extends WatchService with Unregisterable
  15. abstract class Mapper extends AnyRef
  16. 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.

  17. final class NotFilter extends AbstractNotFilter
  18. final class NotNameFilter extends AbstractNotFilter with NameFilter
  19. final class OrFilter extends AbstractOrFilter
  20. final class OrNameFilter extends AbstractOrFilter with NameFilter
  21. sealed abstract class PathFinder extends AnyRef

    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 to get if the underlying filesystem has changed.

  22. final class PatternFilter extends NameFilter

    A NameFilter that accepts a name if it matches the regular expression defined by pattern.

  23. class PollingWatchService extends WatchService with Unregisterable

    A WatchService that polls the filesystem every delay.

  24. final class RichFile extends AnyVal with RichNioPath
  25. sealed trait RichNioPath extends Any
  26. sealed class SimpleFileFilter extends FileFilter

    A FileFilter that selects files according the predicate acceptFunction.

  27. sealed class SimpleFilter extends NameFilter

    A NameFilter that accepts a name if the predicate acceptFunction accepts it.

  28. trait TypedPath extends AnyRef

    Represents a path in the file system.

    Represents a path in the file system. It may cache some of the file attributes so that no disk io is necessary to check, for example, whether the file is a directory or regular file.

  29. trait Unregisterable extends AnyRef
  30. abstract class Using[Source, T] extends AnyRef
  31. trait WatchService extends AnyRef

    A service that will monitor the file system for file creation, deletion and modification.

Value Members

  1. object AllPassFilter extends NameFilter with Product with Serializable

    A NameFilter that accepts all names.

    A NameFilter that accepts all names. That is, accept always returns true.

  2. object CopyOptions extends Serializable
  3. object DirectoryFilter extends FileFilter with Product with Serializable

    A FileFilter that selects files that are a directory according to java.io.File.isDirectory.

  4. object ExistsFileFilter extends FileFilter with Product with Serializable

    A FileFilter that selects files that exist according to java.io.File.exists.

  5. object ExtensionFilter
  6. object FileEventMonitor
  7. object FileFilter
  8. object FileTreeDataView
  9. object FileTreeRepository
  10. object FileTreeView
  11. object GlobFilter

    Constructs a filter from a String, interpreting wildcards.

    Constructs a filter from a String, interpreting wildcards. See the GlobFilter.apply method.

  12. object Hash
  13. object HiddenFileFilter extends FileFilter 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 (.).

  14. object IO

    A collection of File, URL, and I/O utility methods.

  15. object JavaMilli extends MilliMilliseconds
  16. object NameFilter
  17. object NothingFilter extends NameFilter with Product with Serializable

    A NameFilter that accepts nothing.

    A NameFilter that accepts nothing. That is, accept always returns false.

  18. object Path extends Mapper
  19. object PathFinder
  20. object TypedPath
  21. object Using
  22. object WatchService
  23. object syntax extends IOSyntax0

Ungrouped