object JSFs extends scalajs.js.Any

Facade for native nodejs module "fs".

Annotations
@native() @JSImport("fs", JSImport.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, options: UndefOr[scalajs.js.Dynamic] = js.undefined): Unit
  15. def mkdirSync(path: String): Unit

    Synchronously creates a directory.

  16. def mkdtempSync(prefix: String): String
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def readFile(path: String, encoding: String, callback: scalajs.js.Function2[scalajs.js.Error, String, Unit]): Unit

    Reads file asynchronously, invokes callback when done

  21. def readFileSync(path: String, encoding: String): String

    Returns the file contents as String using blocking apis

  22. 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]).

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

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

  24. def renameSync(oldPath: String, newPath: String): Unit

    moves files

  25. def rmSync(path: String, options: UndefOr[scalajs.js.Dynamic] = js.undefined): Unit

    e.g: rmSync(path, js.Dynamic.literal(recursive = true, force = true))

  26. def statSync(path: String): JSStats
  27. def symlinkSync(path: String, link: String, type: UndefOr[String] = js.undefined): Unit

    creates a symlink

  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. def unlinkSync(path: String): Unit
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. def writeFile(path: String, data: String, encoding: String, callback: scalajs.js.Function1[scalajs.js.Error, Unit]): Unit

    Writes file asynchronously

  35. def writeFileSync(path: String, data: String, encoding: UndefOr[String] = js.undefined): Unit
  36. def writeFileSync(path: String, data: Uint8Array): Unit
  37. 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