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
Ordering
- Alphabetic
- By Inheritance
Inherited
- JSFs
- Any
- AnyRef
- Any
- Hide All
- Show All
Visibility
- 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): Unit
Synchronously creates a directory.
- 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 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 '..'.
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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 writeFileSync(path: String, buffer: scalajs.js.Array[Int]): Unit
Writes file contents using blocking apis