final class Path extends PathLike
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Path
- PathLike
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new Path(native: java.nio.file.Path)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def basename: String
- def canEqual(that: Any): Boolean
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def createDirectory(name: String): Either[String, PathLike]
- def createFile(name: String, data: String): Either[String, Path]
- def delete(): Option[String]
- def directoryList(): Either[String, Seq[String]]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(that: Any): Boolean
As we are using an in-memory FS for testing we need to compare string-wise
As we are using an in-memory FS for testing we need to compare string-wise
- Definition Classes
- Path → AnyRef → Any
- def exists: Boolean
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def findParentOf(parents: Set[PathLike]): Option[PathLike]
- Definition Classes
- PathLike
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- Path → AnyRef → Any
- def isDirectory: Boolean
- def isFile: Boolean
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isParentOf(other: PathLike): Boolean
- Definition Classes
- PathLike
- def isRoot: Boolean
- def join(args: String*): Path
- def lastModified(): Option[Long]
- val native: java.nio.file.Path
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def parent: Path
- def read(): Either[String, String]
- def readBytes(): Either[String, Array[Byte]]
- def readSourceData(): Either[String, SourceData]
- def size: Long
- def splitDirectoryEntries(): (Array[PathLike], Array[PathLike])
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- Path → AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def write(data: Array[Byte]): Option[String]
- def write(data: String): Option[String]