Packages

o

zio.nio.file

Files

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
  2. sealed trait AttributeNames extends AnyRef
  3. final case class Attributes(attributeNames: AttributeNames, viewName: String = "base") extends Product with Serializable

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( ... ) @native()
  6. def copy(source: Path, target: Path, copyOptions: CopyOption*): ZIO[Blocking, Exception, Unit]
  7. def createDirectories(path: Path, attrs: FileAttribute[_]*): ZIO[Blocking, Exception, Unit]
  8. def createDirectory(path: Path, attrs: FileAttribute[_]*): ZIO[Blocking, Exception, Unit]
  9. def createFile(path: Path, attrs: FileAttribute[_]*): ZIO[Blocking, Exception, Unit]
  10. def createLink(link: Path, existing: Path): ZIO[Blocking, Exception, Unit]
  11. def createSymbolicLink(link: Path, target: Path, fileAttributes: FileAttribute[_]*): ZIO[Blocking, Exception, Unit]
  12. def createTempDirectory(prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, Exception, Path]
  13. def createTempDirectory(dir: Path, prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, Exception, Path]
  14. def createTempFile(suffix: String = ".tmp", prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, Exception, Path]
  15. def createTempFileIn(dir: Path, suffix: String = ".tmp", prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZIO[Blocking, Exception, Path]
  16. def delete(path: Path): ZIO[Blocking, IOException, Unit]
  17. def deleteIfExists(path: Path): ZIO[Blocking, IOException, Boolean]
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  20. def exists(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]
  21. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def find(path: Path, maxDepth: Int = Int.MaxValue, visitOptions: Set[FileVisitOption] = Set.empty)(test: (Path, BasicFileAttributes) ⇒ Boolean): ZStream[Blocking, Exception, Path]
  23. def fromJavaIterator[A](iterator: Iterator[A]): ZStream[Blocking, RuntimeException, A]
  24. def getAttribute(path: Path, attribute: Attribute, linkOptions: LinkOption*): ZIO[Blocking, Exception, AnyRef]
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def getFileStore(path: Path): ZIO[Blocking, IOException, FileStore]
  27. def getLastModifiedTime(path: Path, linkOptions: LinkOption*): ZIO[Blocking, IOException, FileTime]
  28. def getOwner(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Exception, UserPrincipal]
  29. def getPosixFilePermissions(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Exception, Set[PosixFilePermission]]
  30. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  31. def isDirectory(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]
  32. def isExecutable(path: Path): ZIO[Blocking, Nothing, Boolean]
  33. def isHidden(path: Path): ZIO[Blocking, IOException, Boolean]
  34. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  35. def isReadable(path: Path): ZIO[Blocking, Nothing, Boolean]
  36. def isRegularFile(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]
  37. def isSameFile(path: Path, path2: Path): ZIO[Blocking, IOException, Boolean]
  38. def isSymbolicLink(path: Path): ZIO[Blocking, Nothing, Boolean]
  39. def isWritable(path: Path): ZIO[Blocking, Nothing, Boolean]
  40. def list(path: Path): ZStream[Blocking, Exception, Path]
  41. def move(source: Path, target: Path, copyOptions: CopyOption*): ZIO[Blocking, Exception, Unit]
  42. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  43. def newDirectoryStream(dir: Path, filter: (Path) ⇒ Boolean): ZStream[Blocking, Exception, Path]
  44. def newDirectoryStream(dir: Path, glob: String = "*"): ZStream[Blocking, Exception, Path]
  45. def notExists(path: Path, linkOptions: LinkOption*): ZIO[Blocking, Nothing, Boolean]
  46. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  47. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  48. def probeContentType(path: Path): ZIO[Blocking, IOException, String]
  49. def readAllBytes(path: Path): ZIO[Blocking, IOException, Chunk[Byte]]
  50. def readAllLines(path: Path, charset: Charset = StandardCharsets.UTF_8): ZIO[Blocking, IOException, List[String]]
  51. def readAttributes(path: Path, attributes: Attributes, linkOptions: LinkOption*): ZIO[Blocking, Exception, Map[String, AnyRef]]
  52. def readAttributes[A <: BasicFileAttributes](path: Path, linkOptions: LinkOption*)(implicit arg0: ClassTag[A]): ZIO[Blocking, Exception, A]
  53. def readSymbolicLink(link: Path): ZIO[Blocking, Exception, Path]
  54. def setAttribute(path: Path, attribute: Attribute, value: AnyRef, linkOptions: LinkOption*): ZIO[Blocking, Exception, Unit]
  55. def setLastModifiedTime(path: Path, time: FileTime): ZIO[Blocking, IOException, Unit]
  56. def setOwner(path: Path, owner: UserPrincipal): ZIO[Blocking, Exception, Unit]
  57. def setPosixFilePermissions(path: Path, permissions: Set[PosixFilePermission]): ZIO[Blocking, Exception, Unit]
  58. def size(path: Path): ZIO[Blocking, IOException, Long]
  59. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  60. def toString(): String
    Definition Classes
    AnyRef → Any
  61. def useFileAttributeView[A <: FileAttributeView, B](path: Path, linkOptions: LinkOption*)(f: (A) ⇒ ZIO[Blocking, Exception, B])(implicit arg0: ClassTag[A]): ZIO[Blocking, Exception, B]
  62. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  65. def walk(path: Path, maxDepth: Int = Int.MaxValue, visitOptions: Set[FileVisitOption] = Set.empty): ZStream[Blocking, Exception, Path]
  66. def writeBytes(path: Path, bytes: Chunk[Byte], openOptions: OpenOption*): ZIO[Blocking, Exception, Unit]
  67. def writeLines(path: Path, lines: Iterable[CharSequence], charset: Charset = StandardCharsets.UTF_8, openOptions: Set[OpenOption] = Set.empty): ZIO[Blocking, Exception, Unit]
  68. object Attribute extends Serializable
  69. object AttributeNames
  70. object Attributes extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped