Package

io.scalajs.nodejs

fs

Permalink

package fs

Visibility
  1. Public
  2. All

Type Members

  1. trait FSConstants extends Object

    Permalink

    An object containing commonly used constants for file system operations

    An object containing commonly used constants for file system operations

    Annotations
    @RawJSType() @native()
  2. trait ReadStream extends Object with Readable

    Permalink

    fs.ReadStream - ReadStream is a Readable Stream.

    fs.ReadStream - ReadStream is a Readable Stream.

    Annotations
    @RawJSType() @native()
    See also

    https://nodejs.org/api/stream.html#stream_class_stream_readable

  3. trait Stats extends Object

    Permalink

    fs.Stats (Stat Time Values) - Objects returned from fs.stat(), fs.lstat() and fs.fstat() and their synchronous counterparts are of this type.

    fs.Stats (Stat Time Values) - Objects returned from fs.stat(), fs.lstat() and fs.fstat() and their synchronous counterparts are of this type.

    Annotations
    @RawJSType() @native()
    Example:
    1.  Stats {
         dev: 2114,
         ino: 48064969,
         mode: 33188,
         nlink: 1,
         uid: 85,
         gid: 100,
         rdev: 0,
         size: 527,
         blksize: 4096,
         blocks: 8,
         atimeMs: 1318289051000.1,
         mtimeMs: 1318289051000.1,
         ctimeMs: 1318289051000.1,
         birthtimeMs: 1318289051000.1,
         atime: Mon, 10 Oct 2011 23:24:11 GMT,
         mtime: Mon, 10 Oct 2011 23:24:11 GMT,
         ctime: Mon, 10 Oct 2011 23:24:11 GMT,
         birthtime: Mon, 10 Oct 2011 23:24:11 GMT
      }
    Since

    0.1.21

  4. trait WriteStream extends Object with Writable

    Permalink

    fs.WriteStream - WriteStream is a Writable Stream.

    fs.WriteStream - WriteStream is a Writable Stream.

    Annotations
    @RawJSType() @native()
    See also

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

Value Members

  1. object ReadStream

    Permalink

    Read Stream Companion

  2. object WriteStream

    Permalink

    Write Stream Companion

Ungrouped