Packages

object JSFs extends scalajs.js.Any

Facade for native nodejs module "fs".

Annotations
@native() @JSImport("fs", Namespace)
See also

https://nodejs.org/api/fs.html

Linear Supertypes
scalajs.js.Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JSFs
  2. Any
  3. AnyRef
  4. 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 clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def existsSync(path: String): Boolean

    Returns true if the file exists, false otherwise.

  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. def lstatSync(path: String): JSStats

    Returns an fs.Stats for path.

  14. def mkdirSync(path: String): Unit

    Synchronously creates a directory.

  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def readFileSync(path: String, encoding: String): String

    Returns the file contents as String using blocking apis

  19. def readFileSync(path: String): scalajs.js.Array[Int]

    Returns the file contents as Buffer using blocking apis.

    Returns the file contents as Buffer using blocking apis.

    NOTE: The actual return value is a Node.js buffer and not js.Array[Int]. However, both support .length and angle bracket access (foo[1]).

  20. def readdirSync(path: String): scalajs.js.Array[String]

    Returns an array of filenames excluding '.' and '..'.

  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. def writeFileSync(path: String, buffer: scalajs.js.Array[Int]): Unit

    Writes file contents using blocking apis

Inherited from scalajs.js.Any

Inherited from AnyRef

Inherited from Any

Ungrouped