p

sbt

io

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. sealed trait BaseSyntax extends AnyRef
  4. final class CopyOptions extends Serializable

    The options for the copy operation in IO.

  5. final class ExactFileFilter extends FileFilter

    A FileFilter that only accepts a single input file.

  6. final class ExactFilter extends NameFilter

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

  7. final class ExtensionFilter extends NameFilter

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

  8. trait FileFilter extends java.io.FileFilter

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

  9. sealed abstract class IOSyntax0 extends IOSyntax1
  10. sealed abstract class IOSyntax1 extends BaseSyntax
  11. final class LinkOptionPath extends RichNioPath
  12. abstract class Mapper extends AnyRef
  13. 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.

  14. final class NotFilter extends AbstractNotFilter
  15. final class NotNameFilter extends AbstractNotFilter with NameFilter
  16. final class OrFilter extends AbstractOrFilter
  17. final class OrNameFilter extends AbstractOrFilter with NameFilter
  18. 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 to get if the underlying filesystem has changed.

  19. sealed trait PathFinderDefaults extends Combinator
  20. sealed trait PathLister extends AnyRef
  21. final class PatternFilter extends NameFilter

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

  22. final class PrefixFilter extends NameFilter
  23. final class RichFile extends AnyVal with RichNioPath
  24. sealed trait RichNioPath extends Any
  25. sealed class SimpleFileFilter extends FileFilter

    A FileFilter that selects files according the predicate acceptFunction.

  26. sealed class SimpleFilter extends NameFilter

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

  27. final class SuffixFilter extends NameFilter
  28. abstract class Using[Source, T] extends AnyRef
  29. 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 PathFilter 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 FileFilter
  7. object GlobFilter

    Constructs a filter from a String, interpreting wildcards.

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

  8. object Hash
  9. 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 (.).

  10. object IO

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

  11. object JavaMilli extends MilliMilliseconds
  12. object NameFilter
  13. object NothingFilter extends NameFilter with Product with Serializable

    A NameFilter that accepts nothing.

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

  14. object Path extends Mapper
  15. object PathFinder
  16. object PathLister
  17. 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.

  18. object Using
  19. object WatchService
  20. object syntax extends IOSyntax0

Ungrouped