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
- Alphabetic
- By Inheritance
- JSFs
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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 clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def existsSync(path: String): Boolean
Returns true if the file exists, false otherwise.
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def lstatSync(path: String): JSStats
Returns an fs.Stats for path.
- def mkdirSync(path: String, options: UndefOr[scalajs.js.Dynamic] = js.undefined): Unit
- def mkdirSync(path: String): Unit
Synchronously creates a directory.
- def mkdtempSync(prefix: String): String
- 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 readFile(path: String, encoding: String, callback: scalajs.js.Function2[scalajs.js.Error, String, Unit]): Unit
Reads file asynchronously, invokes callback when done
- def readFileSync(path: String, encoding: String): String
Returns the file contents as String using blocking apis
- 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]).
- def readdirSync(path: String): scalajs.js.Array[String]
Returns an array of filenames excluding '.' and '..'.
- def renameSync(oldPath: String, newPath: String): Unit
moves files
- def rmSync(path: String, options: UndefOr[scalajs.js.Dynamic] = js.undefined): Unit
e.g: rmSync(path, js.Dynamic.literal(recursive = true, force = true))
- def statSync(path: String): JSStats
- def symlinkSync(path: String, link: String, type: UndefOr[String] = js.undefined): Unit
creates a symlink
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def unlinkSync(path: String): Unit
- 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 writeFile(path: String, data: String, encoding: String, callback: scalajs.js.Function1[scalajs.js.Error, Unit]): Unit
Writes file asynchronously
- def writeFileSync(path: String, data: String, encoding: UndefOr[String] = js.undefined): Unit
- def writeFileSync(path: String, data: Uint8Array): Unit
- def writeFileSync(path: String, buffer: scalajs.js.Array[Int]): Unit
Writes file contents using blocking apis