Object

zio.nio.file

Files

Related Doc: package file

Permalink

object Files

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

Type Members

  1. final case class Attribute(attributeName: String, viewName: String = "basic") extends Product with Serializable

    Permalink
  2. sealed trait AttributeNames extends AnyRef

    Permalink
  3. final case class Attributes(attributeNames: AttributeNames, viewName: String = "base") extends Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Attribute extends Serializable

    Permalink
  5. object AttributeNames

    Permalink
  6. object Attributes extends Serializable

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def copy(source: Path, target: Path, copyOptions: CopyOption*): ZIO[Blocking, IOException, Unit]

    Permalink
  10. def createDirectories(path: Path, attrs: FileAttribute[_]*): ZIO[Blocking, IOException, Unit]

    Permalink
  11. def createDirectory(path: Path, attrs: FileAttribute[_]*): ZIO[Blocking, IOException, Unit]

    Permalink
  12. def createFile(path: Path, attrs: FileAttribute[_]*): ZIO[Blocking, IOException, Unit]

    Permalink
  13. def createLink(link: Path, existing: Path): ZIO[Blocking, IOException, Unit]

    Permalink
  14. def createSymbolicLink(link: Path, target: Path, fileAttributes: FileAttribute[_]*): ZIO[Blocking, IOException, Unit]

    Permalink
  15. def createTempDirectory(prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, IOException, Path]

    Permalink
  16. def createTempDirectory(dir: Path, prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, IOException, Path]

    Permalink
  17. def createTempFile(suffix: String = ".tmp", prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, IOException, Path]

    Permalink
  18. def createTempFileIn(dir: Path, suffix: String = ".tmp", prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, IOException, Path]

    Permalink
  19. def delete(path: Path): ZIO[Blocking, IOException, Unit]

    Permalink
  20. def deleteIfExists(path: Path): ZIO[Blocking, IOException, Boolean]

    Permalink
  21. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  23. def exists(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]

    Permalink
  24. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def find(path: Path, maxDepth: Int = Int.MaxValue, visitOptions: Set[FileVisitOption] = Set.empty)(test: (Path, BasicFileAttributes) ⇒ Boolean): ZStream[Blocking, IOException, Path]

    Permalink
  26. def fromJavaIterator[A](iterator: Iterator[A]): ZStream[Blocking, Nothing, A]

    Permalink
  27. def getAttribute(path: Path, attribute: Attribute, linkOptions: LinkOption*): ZIO[Blocking, IOException, AnyRef]

    Permalink
  28. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  29. def getFileStore(path: Path): ZIO[Blocking, IOException, FileStore]

    Permalink
  30. def getLastModifiedTime(path: Path, linkOptions: LinkOption*): ZIO[Blocking, IOException, FileTime]

    Permalink
  31. def getOwner(path: Path, linkOptions: LinkOption*): ZIO[Blocking, IOException, UserPrincipal]

    Permalink
  32. def getPosixFilePermissions(path: Path, linkOptions: LinkOption*): ZIO[Blocking, IOException, Set[PosixFilePermission]]

    Permalink
  33. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  34. def isDirectory(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]

    Permalink
  35. def isExecutable(path: Path): ZIO[Blocking, Nothing, Boolean]

    Permalink
  36. def isHidden(path: Path): ZIO[Blocking, IOException, Boolean]

    Permalink
  37. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  38. def isReadable(path: Path): ZIO[Blocking, Nothing, Boolean]

    Permalink
  39. def isRegularFile(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]

    Permalink
  40. def isSameFile(path: Path, path2: Path): ZIO[Blocking, IOException, Boolean]

    Permalink
  41. def isSymbolicLink(path: Path): ZIO[Blocking, Nothing, Boolean]

    Permalink
  42. def isWritable(path: Path): ZIO[Blocking, Nothing, Boolean]

    Permalink
  43. def list(path: Path): ZStream[Blocking, IOException, Path]

    Permalink
  44. def move(source: Path, target: Path, copyOptions: CopyOption*): ZIO[Blocking, IOException, Unit]

    Permalink
  45. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  46. def newDirectoryStream(dir: Path, filter: (Path) ⇒ Boolean): ZStream[Blocking, IOException, Path]

    Permalink
  47. def newDirectoryStream(dir: Path, glob: String = "*"): ZStream[Blocking, IOException, Path]

    Permalink
  48. def notExists(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]

    Permalink
  49. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  50. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  51. def probeContentType(path: Path): ZIO[Blocking, IOException, String]

    Permalink
  52. def readAllBytes(path: Path): ZIO[Blocking, IOException, Chunk[Byte]]

    Permalink
  53. def readAllLines(path: Path, charset: Charset = StandardCharsets.UTF_8): ZIO[Blocking, IOException, List[String]]

    Permalink
  54. def readAttributes(path: Path, attributes: Attributes, linkOptions: LinkOption*): ZIO[Blocking, IOException, Map[String, AnyRef]]

    Permalink
  55. def readAttributes[A <: BasicFileAttributes](path: Path, linkOptions: LinkOption*)(implicit arg0: ClassTag[A]): ZIO[Blocking, IOException, A]

    Permalink
  56. def readSymbolicLink(link: Path): ZIO[Blocking, IOException, Path]

    Permalink
  57. def setAttribute(path: Path, attribute: Attribute, value: AnyRef, linkOptions: LinkOption*): ZIO[Blocking, Exception, Unit]

    Permalink
  58. def setLastModifiedTime(path: Path, time: FileTime): ZIO[Blocking, IOException, Unit]

    Permalink
  59. def setOwner(path: Path, owner: UserPrincipal): ZIO[Blocking, IOException, Unit]

    Permalink
  60. def setPosixFilePermissions(path: Path, permissions: Set[PosixFilePermission]): ZIO[Blocking, IOException, Unit]

    Permalink
  61. def size(path: Path): ZIO[Blocking, IOException, Long]

    Permalink
  62. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  63. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  64. def useFileAttributeView[A <: FileAttributeView, B, E](path: Path, linkOptions: LinkOption*)(f: (A) ⇒ ZIO[Blocking, E, B])(implicit arg0: ClassTag[A]): ZIO[Blocking, E, B]

    Permalink
  65. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  68. def walk(path: Path, maxDepth: Int = Int.MaxValue, visitOptions: Set[FileVisitOption] = Set.empty): ZStream[Blocking, IOException, Path]

    Permalink
  69. def writeBytes(path: Path, bytes: Chunk[Byte], openOptions: OpenOption*): ZIO[Blocking, IOException, Unit]

    Permalink
  70. def writeLines(path: Path, lines: Iterable[CharSequence], charset: Charset = StandardCharsets.UTF_8, openOptions: Set[OpenOption] = Set.empty): ZIO[Blocking, IOException, Unit]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped