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 createTempDirectoryManaged(prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZManaged[Blocking, IOException, Path]

    Permalink
  18. def createTempDirectoryManaged(dir: Path, prefix: Option[String], fileAttributes: Iterable[FileAttribute[_]]): ZManaged[Blocking, IOException, Path]

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

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

    Permalink
  21. def createTempFileInManaged(dir: Path, suffix: String = ".tmp", prefix: Option[String] = None, fileAttributes: Iterable[FileAttribute[_]] = Nil): ZManaged[Blocking, IOException, Path]

    Permalink
  22. def createTempFileManaged(suffix: String = ".tmp", prefix: Option[String] = None, fileAttributes: Iterable[FileAttribute[_]] = Nil): ZManaged[Blocking, IOException, Path]

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

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

    Permalink
  25. def deleteRecursive(path: Path): ZIO[Blocking, IOException, Long]

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

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

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

    Permalink
  29. def finalize(): Unit

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

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

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

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

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

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

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

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

    Permalink
  38. def hashCode(): Int

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

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

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

    Permalink
  42. final def isInstanceOf[T0]: Boolean

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

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

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

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

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

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

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

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

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

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

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

    Permalink
  54. final def notify(): Unit

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  69. 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
  70. final def wait(): Unit

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

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

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

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

    Permalink
  75. 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