Packages

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. Protected

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

Inherited from AnyRef

Inherited from Any

Ungrouped