t

io.scalajs.nodejs.fs

BigIntStats

trait BigIntStats extends Object with IStats[BigInt, BigInt]

fs.Stats (Stat Time Values) - Objects returned from fs.stat(), fs.lstat() and fs.fstat() and their synchronous counterparts are of this type.

Annotations
@JSType() @native()
Example:
  1. BigIntStats {
      dev: 2114n,
      ino: 48064969n,
      mode: 33188n,
      nlink: 1n,
      uid: 85n,
      gid: 100n,
      rdev: 0n,
      size: 527n,
      blksize: 4096n,
      blocks: 8n,
      atimeMs: 1318289051000n,
      mtimeMs: 1318289051000n,
      ctimeMs: 1318289051000n,
      birthtimeMs: 1318289051000n,
      atimeNs: 1318289051000000000n,
      mtimeNs: 1318289051000000000n,
      ctimeNs: 1318289051000000000n,
      birthtimeNs: 1318289051000000000n,
      atime: Mon, 10 Oct 2011 23:24:11 GMT,
      mtime: Mon, 10 Oct 2011 23:24:11 GMT,
      ctime: Mon, 10 Oct 2011 23:24:11 GMT,
      birthtime: Mon, 10 Oct 2011 23:24:11 GMT
    }
Since

0.1.21

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BigIntStats
  2. IStats
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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 atime: Date

    "Access Time" - Time when file data last accessed.

    "Access Time" - Time when file data last accessed. Changed by the mknod(2), utimes(2), and read(2) system calls.

    Definition Classes
    IStats
  6. def atimeMs: BigInt
    Definition Classes
    IStats
  7. def atimeNs: BigInt
  8. def birthtime: Date

    "Birth Time" - Time of file creation.

    "Birth Time" - Time of file creation. Set once when the file is created. On filesystems where birthtime is not available, this field may instead hold either the ctime or 1970-01-01T00:00Z (ie, unix epoch timestamp 0). Note that this value may be greater than atime or mtime in this case. On Darwin and other FreeBSD variants, also set if the atime is explicitly set to an earlier value than the current birthtime using the utimes(2) system call.

    Definition Classes
    IStats
  9. def birthtimeMs: BigInt
    Definition Classes
    IStats
  10. def birthtimeNs: BigInt
  11. def blksize: BigInt
    Definition Classes
    IStats
  12. def blocks: BigInt
    Definition Classes
    IStats
  13. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  14. def ctime: Date

    "Change Time" - Time when file status was last changed (inode data modification).

    "Change Time" - Time when file status was last changed (inode data modification). Changed by the chmod(2), chown(2), link(2), mknod(2), rename(2), unlink(2), utimes(2), read(2), and write(2) system calls.

    Definition Classes
    IStats
  15. def ctimeMs: BigInt
    Definition Classes
    IStats
  16. def ctimeNs: BigInt
  17. def dev: BigInt
    Definition Classes
    IStats
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  22. def gid: BigInt
    Definition Classes
    IStats
  23. def hasOwnProperty(v: String): Boolean
    Definition Classes
    Object
  24. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  25. def ino: BigInt
    Definition Classes
    IStats
  26. def isBlockDevice(): Boolean
    Definition Classes
    IStats
  27. def isCharacterDevice(): Boolean
    Definition Classes
    IStats
  28. def isDirectory(): Boolean
    Definition Classes
    IStats
  29. def isFIFO(): Boolean
    Definition Classes
    IStats
  30. def isFile(): Boolean
    Definition Classes
    IStats
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def isPrototypeOf(v: Object): Boolean
    Definition Classes
    Object
  33. def isSocket(): Boolean
    Definition Classes
    IStats
  34. def isSymbolicLink(): Boolean

    (only valid with fs.lstat())

    (only valid with fs.lstat())

    Definition Classes
    IStats
  35. def mode: BigInt
    Definition Classes
    IStats
  36. def mtime: Date

    "Modified Time" - Time when file data last modified.

    "Modified Time" - Time when file data last modified. Changed by the mknod(2), utimes(2), and write(2) system calls.

    Definition Classes
    IStats
  37. def mtimeMs: BigInt
    Definition Classes
    IStats
  38. def mtimeNs: BigInt
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. def nlink: BigInt
    Definition Classes
    IStats
  41. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  43. def propertyIsEnumerable(v: String): Boolean
    Definition Classes
    Object
  44. def rdev: BigInt
    Definition Classes
    IStats
  45. def size: BigInt
    Definition Classes
    IStats
  46. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  47. def toLocaleString(): String
    Definition Classes
    Object
  48. def toString(): String
    Definition Classes
    AnyRef → Any
  49. def uid: BigInt
    Definition Classes
    IStats
  50. def valueOf(): Any
    Definition Classes
    Object
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  53. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from IStats[BigInt, BigInt]

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped