Class

sbt.io

LinkOptionPath

Related Doc: package io

Permalink

final class LinkOptionPath extends RichNioPath

Linear Supertypes
RichNioPath, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. LinkOptionPath
  2. RichNioPath
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new LinkOptionPath(p: Path, lo: Vector[LinkOption])

    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. def aclFileAttributeView: AclFileAttributeView

    Permalink
    Definition Classes
    RichNioPath
  5. def addPermission(permission: PosixFilePermission): Unit

    Permalink

    Adds permission to this file.

    Adds permission to this file. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val asPath: Path

    Permalink
    Definition Classes
    LinkOptionPathRichNioPath
  8. def attributes: BasicFileAttributes

    Permalink
    Definition Classes
    RichNioPath
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def dosAttributes: DosFileAttributes

    Permalink
    Definition Classes
    RichNioPath
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  15. def group: GroupPrincipal

    Permalink

    Returns the group owner of a file.

    Returns the group owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  16. def groupName: String

    Permalink

    Returns the group owner of a file.

    Returns the group owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  18. def isGroupExecutable: Boolean

    Permalink

    Tests if this file has the group+execute permission.

    Tests if this file has the group+execute permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  19. def isGroupReadable: Boolean

    Permalink

    Tests if this file has the group+read permission.

    Tests if this file has the group+read permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  20. def isGroupWritable: Boolean

    Permalink

    Tests if this file has the group+write permission.

    Tests if this file has the group+write permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. def isOthersExecutable: Boolean

    Permalink

    Tests if this file has the others+execute permission.

    Tests if this file has the others+execute permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  23. def isOthersReadable: Boolean

    Permalink

    Tests if this file has the others+read permission.

    Tests if this file has the others+read permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  24. def isOthersWritable: Boolean

    Permalink

    Tests if this file has the others+write permission.

    Tests if this file has the others+write permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  25. def isOwnerExecutable: Boolean

    Permalink

    Tests if this file has the owner+execute permission.

    Tests if this file has the owner+execute permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  26. def isOwnerReadable: Boolean

    Permalink

    Tests if this file has the owner+read permission.

    Tests if this file has the owner+read permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  27. def isOwnerWritable: Boolean

    Permalink

    Tests if this file has the owner+write permission.

    Tests if this file has the owner+write permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  28. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  29. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  31. def owner: UserPrincipal

    Permalink

    Returns the owner of a file.

    Returns the owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  32. def ownerName: String

    Permalink

    Returns the owner of a file.

    Returns the owner of a file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  33. def permissions: Set[PosixFilePermission]

    Permalink

    Returns this file's POSIX permissions.

    Returns this file's POSIX permissions. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  34. def permissionsAsString: String

    Permalink

    Returns this file's POSIX permissions.

    Returns this file's POSIX permissions. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  35. def posixAttributes: PosixFileAttributes

    Permalink
    Definition Classes
    RichNioPath
  36. def removePermission(permission: PosixFilePermission): Unit

    Permalink

    Removes permission from this file.

    Removes permission from this file. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  37. def setGroup(group: String): Unit

    Permalink

    Updates the group owner of the file.

    Updates the group owner of the file. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  38. def setOwner(owner: String): Unit

    Permalink

    Updates the file owner.

    Updates the file owner. This operation requires underlying filesystem to support IO.hasFileOwnerAttributeView.

    Definition Classes
    RichNioPath
  39. def setPermissions(permissions: Set[PosixFilePermission]): Unit

    Permalink

    Updates permission of this file.

    Updates permission of this file. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  41. def testPermission(permission: PosixFilePermission): Boolean

    Permalink

    Tests if this file has the given permission.

    Tests if this file has the given permission. This operation requires underlying filesystem to support IO.isPosix.

    Definition Classes
    RichNioPath
  42. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  43. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from RichNioPath

Inherited from AnyRef

Inherited from Any

Ungrouped