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

Inherited from AnyRef

Inherited from Any

Ungrouped