class Files[F[_]] extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Files
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Files()(implicit F: Sync[F])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def copy(source: Path, target: Path, options: CopyOption*): F[Path]
- def copy(source: Path, out: OutputStream): F[Long]
- def copy(in: InputStream, target: Path, options: CopyOption*): F[Long]
- def createDirectories(dir: Path, attrs: FileAttribute[_]*): F[Path]
- def createDirectory(dir: Path, attrs: FileAttribute[_]*): F[Path]
- def createFile(path: Path, attrs: FileAttribute[_]*): F[Path]
- def createLink(link: Path, existing: Path): F[Path]
- def createSymbolicLink(link: Path, target: Path, attrs: FileAttribute[_]*): F[Path]
- def createTempDirectory(prefix: String, attrs: FileAttribute[_]*): F[Path]
- def createTempDirectory(dir: Path, prefix: String, attrs: FileAttribute[_]*): F[Path]
- def createTempFile(prefix: String, suffix: String, attrs: FileAttribute[_]*): F[Path]
- def createTempFile(dir: Path, prefix: String, suffix: String, attrs: FileAttribute[_]*): F[Path]
- def delete(path: Path): F[Unit]
- def deleteIfExists(path: Path): F[Boolean]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def exists(path: Path): F[Boolean]
- def find(start: Path, maxDepth: Int, matcher: (Path, BasicFileAttributes) => Boolean, options: FileVisitOption*): F[Stream[Path]]
- def getAttribute(path: Path, attribute: String, options: LinkOption*): F[AnyRef]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def getFileAttributeView[A <: FileAttributeView](path: Path, type: Class[A], options: LinkOption*): F[A]
- def getFileStore(path: Path): F[FileStore]
- def getLastModifiedTime(path: Path, options: LinkOption*): F[FileTime]
- def getOwner(path: Path, options: LinkOption*): F[UserPrincipal]
- def getPosixFilePermissions(path: Path, options: LinkOption*): F[Set[PosixFilePermission]]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def isDirectory(path: Path, options: LinkOption*): F[Boolean]
- def isExecutable(path: Path): F[Boolean]
- def isHidden(path: Path): F[Boolean]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isReadable(path: Path): F[Boolean]
- def isRegularFile(path: Path, options: LinkOption*): F[Boolean]
- def isSameFile(path: Path, path2: Path): F[Boolean]
- def isWritable(path: Path): F[Boolean]
- def lines(path: Path, cs: Charset): F[Stream[String]]
- def lines(path: Path): F[Stream[String]]
- def list(dir: Path): F[Stream[Path]]
- def move(source: Path, target: Path, options: CopyOption*): F[Path]
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def newBufferedReader(path: Path, cs: Charset): F[BufferedReader]
- def newBufferedReader(path: Path): F[BufferedReader]
- def newBufferedWriter(path: Path, options: OpenOption*): F[BufferedWriter]
- def newBufferedWriter(path: Path, cs: Charset, options: OpenOption*): F[BufferedWriter]
- def newByteChannel(path: Path, options: Set[_ <: OpenOption], attrs: FileAttribute[_]*): F[SeekableByteChannel]
- def newByteChannel(path: Path, options: OpenOption*): F[SeekableByteChannel]
- def newDirectoryStream(dir: Path, glob: String): F[DirectoryStream[Path]]
- def newDirectoryStream(dir: Path, filter: Filter[_ >: Path]): F[DirectoryStream[Path]]
- def newDirectoryStream(dir: Path): F[DirectoryStream[Path]]
- def newInputStream(path: Path, options: OpenOption*): F[InputStream]
- def newOutputStream(path: Path, options: OpenOption*): F[OutputStream]
- def notExists(path: Path, options: LinkOption*): F[Boolean]
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def probeContentType(path: Path): F[String]
- def readAllBytes(path: Path): F[Array[Byte]]
- def readAllLines(path: Path): F[Buffer[String]]
- def readAttributes(path: Path, attributes: String, options: LinkOption*): F[Map[String, AnyRef]]
- def readAttributes[A <: BasicFileAttributes](path: Path, type: Class[A], options: LinkOption*): F[A]
- def readSymbolicLink(link: Path): F[Path]
- def setAttribute(path: Path, attribute: String, value: AnyRef, options: LinkOption*): F[Path]
- def setLastModifiedTime(path: Path, time: FileTime): F[Path]
- def setOwner(path: Path, owner: UserPrincipal): F[Path]
- def setPosixFilePermissions(path: Path, perms: Set[PosixFilePermission]): F[Path]
- def size(path: Path): F[Long]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def walk(start: Path, maxDepth: Int, options: FileVisitOption*): F[Stream[Path]]
- def walk(start: Path, options: FileVisitOption*): F[Stream[Path]]
- def walkFileTree(start: Path, options: Set[FileVisitOption], maxDepth: Int, visitor: FileVisitor[_ >: Path]): F[Path]
- def walkFileTree(start: Path, visitor: FileVisitor[_ >: Path]): F[Path]
- def write(path: Path, lines: Iterable[_ <: CharSequence], options: OpenOption*): F[Path]
- def write(path: Path, lines: Iterable[_ <: CharSequence], cs: Charset, options: OpenOption*): F[Path]
- def write(path: Path, bytes: Array[Byte], options: OpenOption*): F[Path]
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated