Packages

class Files[F[_]] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Files
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Files()(implicit F: Sync[F])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. def copy(source: Path, target: Path, options: CopyOption*): F[Path]
  7. def copy(source: Path, out: OutputStream): F[Long]
  8. def copy(in: InputStream, target: Path, options: CopyOption*): F[Long]
  9. def createDirectories(dir: Path, attrs: FileAttribute[_]*): F[Path]
  10. def createDirectory(dir: Path, attrs: FileAttribute[_]*): F[Path]
  11. def createFile(path: Path, attrs: FileAttribute[_]*): F[Path]
  12. def createLink(link: Path, existing: Path): F[Path]
  13. def createSymbolicLink(link: Path, target: Path, attrs: FileAttribute[_]*): F[Path]
  14. def createTempDirectory(prefix: String, attrs: FileAttribute[_]*): F[Path]
  15. def createTempDirectory(dir: Path, prefix: String, attrs: FileAttribute[_]*): F[Path]
  16. def createTempFile(prefix: String, suffix: String, attrs: FileAttribute[_]*): F[Path]
  17. def createTempFile(dir: Path, prefix: String, suffix: String, attrs: FileAttribute[_]*): F[Path]
  18. def delete(path: Path): F[Unit]
  19. def deleteIfExists(path: Path): F[Boolean]
  20. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  22. def exists(path: Path): F[Boolean]
  23. def find(start: Path, maxDepth: Int, matcher: (Path, BasicFileAttributes) => Boolean, options: FileVisitOption*): F[Stream[Path]]
  24. def getAttribute(path: Path, attribute: String, options: LinkOption*): F[AnyRef]
  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  26. def getFileAttributeView[A <: FileAttributeView](path: Path, type: Class[A], options: LinkOption*): F[A]
  27. def getFileStore(path: Path): F[FileStore]
  28. def getLastModifiedTime(path: Path, options: LinkOption*): F[FileTime]
  29. def getOwner(path: Path, options: LinkOption*): F[UserPrincipal]
  30. def getPosixFilePermissions(path: Path, options: LinkOption*): F[Set[PosixFilePermission]]
  31. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  32. def isDirectory(path: Path, options: LinkOption*): F[Boolean]
  33. def isExecutable(path: Path): F[Boolean]
  34. def isHidden(path: Path): F[Boolean]
  35. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  36. def isReadable(path: Path): F[Boolean]
  37. def isRegularFile(path: Path, options: LinkOption*): F[Boolean]
  38. def isSameFile(path: Path, path2: Path): F[Boolean]
  39. def isWritable(path: Path): F[Boolean]
  40. def lines(path: Path, cs: Charset): F[Stream[String]]
  41. def lines(path: Path): F[Stream[String]]
  42. def list(dir: Path): F[Stream[Path]]
  43. def move(source: Path, target: Path, options: CopyOption*): F[Path]
  44. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  45. def newBufferedReader(path: Path, cs: Charset): F[BufferedReader]
  46. def newBufferedReader(path: Path): F[BufferedReader]
  47. def newBufferedWriter(path: Path, options: OpenOption*): F[BufferedWriter]
  48. def newBufferedWriter(path: Path, cs: Charset, options: OpenOption*): F[BufferedWriter]
  49. def newByteChannel(path: Path, options: Set[_ <: OpenOption], attrs: FileAttribute[_]*): F[SeekableByteChannel]
  50. def newByteChannel(path: Path, options: OpenOption*): F[SeekableByteChannel]
  51. def newDirectoryStream(dir: Path, glob: String): F[DirectoryStream[Path]]
  52. def newDirectoryStream(dir: Path, filter: Filter[_ >: Path]): F[DirectoryStream[Path]]
  53. def newDirectoryStream(dir: Path): F[DirectoryStream[Path]]
  54. def newInputStream(path: Path, options: OpenOption*): F[InputStream]
  55. def newOutputStream(path: Path, options: OpenOption*): F[OutputStream]
  56. def notExists(path: Path, options: LinkOption*): F[Boolean]
  57. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  58. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  59. def probeContentType(path: Path): F[String]
  60. def readAllBytes(path: Path): F[Array[Byte]]
  61. def readAllLines(path: Path): F[Buffer[String]]
  62. def readAttributes(path: Path, attributes: String, options: LinkOption*): F[Map[String, AnyRef]]
  63. def readAttributes[A <: BasicFileAttributes](path: Path, type: Class[A], options: LinkOption*): F[A]
  64. def readSymbolicLink(link: Path): F[Path]
  65. def setAttribute(path: Path, attribute: String, value: AnyRef, options: LinkOption*): F[Path]
  66. def setLastModifiedTime(path: Path, time: FileTime): F[Path]
  67. def setOwner(path: Path, owner: UserPrincipal): F[Path]
  68. def setPosixFilePermissions(path: Path, perms: Set[PosixFilePermission]): F[Path]
  69. def size(path: Path): F[Long]
  70. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  71. def toString(): String
    Definition Classes
    AnyRef → Any
  72. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  73. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  74. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  75. def walk(start: Path, maxDepth: Int, options: FileVisitOption*): F[Stream[Path]]
  76. def walk(start: Path, options: FileVisitOption*): F[Stream[Path]]
  77. def walkFileTree(start: Path, options: Set[FileVisitOption], maxDepth: Int, visitor: FileVisitor[_ >: Path]): F[Path]
  78. def walkFileTree(start: Path, visitor: FileVisitor[_ >: Path]): F[Path]
  79. def write(path: Path, lines: Iterable[_ <: CharSequence], options: OpenOption*): F[Path]
  80. def write(path: Path, lines: Iterable[_ <: CharSequence], cs: Charset, options: OpenOption*): F[Path]
  81. def write(path: Path, bytes: Array[Byte], options: OpenOption*): F[Path]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped