trait JSFs extends scalajs.js.Any
Facade for native nodejs module "fs".
- Annotations
- @RawJSType() @native()
- See also
https://nodejs.org/api/fs.html
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- JSFs
- Any
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- def +(other: String): String
- def ->[B](y: B): (JSFs, B)
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- def ensuring(cond: (JSFs) ⇒ Boolean, msg: ⇒ Any): JSFs
- def ensuring(cond: (JSFs) ⇒ Boolean): JSFs
- def ensuring(cond: Boolean, msg: ⇒ Any): JSFs
- def ensuring(cond: Boolean): JSFs
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
existsSync(path: String): Boolean
Returns true if the file exists, false otherwise.
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
- def formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
- 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( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
writeFileSync(path: String, buffer: scalajs.js.Array[Int]): Unit
Writes file contents using blocking apis
- def →[B](y: B): (JSFs, B)