Liking cljdoc? Tell your friends :D

dots.node.fs.stats-fs

Provides information about a mounted file system.

Objects returned from {@link statfs } and its synchronous counterpart are of this type. If bigint in the options passed to those methods is true, the numeric values will be bigint instead of number.

StatFs {
  type: 1397114950,
  bsize: 4096,
  blocks: 121938943,
  bfree: 61058895,
  bavail: 61058895,
  files: 999,
  ffree: 1000000
}

bigint version:

StatFs {
  type: 1397114950n,
  bsize: 4096n,
  blocks: 121938943n,
  bfree: 61058895n,
  bavail: 61058895n,
  files: 999n,
  ffree: 1000000n
}
Provides information about a mounted file system.

Objects returned from {@link statfs } and its synchronous counterpart are of
this type. If `bigint` in the `options` passed to those methods is `true`, the
numeric values will be `bigint` instead of `number`.

```console
StatFs {
  type: 1397114950,
  bsize: 4096,
  blocks: 121938943,
  bfree: 61058895,
  bavail: 61058895,
  files: 999,
  ffree: 1000000
}
```

`bigint` version:

```console
StatFs {
  type: 1397114950n,
  bsize: 4096n,
  blocks: 121938943n,
  bfree: 61058895n,
  bavail: 61058895n,
  files: 999n,
  ffree: 1000000n
}
```
raw docstring

bavailcljs

(bavail stats-fs)

Available blocks for unprivileged users

Available blocks for unprivileged users
sourceraw docstring

bfreecljs

(bfree stats-fs)

Free blocks in file system.

Free blocks in file system.
sourceraw docstring

blockscljs

(blocks stats-fs)

Total data blocks in file system.

Total data blocks in file system.
sourceraw docstring

bsizecljs

(bsize stats-fs)

Optimal transfer block size.

Optimal transfer block size.
sourceraw docstring

ffreecljs

(ffree stats-fs)

Free file nodes in file system.

Free file nodes in file system.
sourceraw docstring

filescljs

(files stats-fs)

Total file nodes in file system.

Total file nodes in file system.
sourceraw docstring

set-bavail!cljs

(set-bavail! stats-fs value)

Available blocks for unprivileged users

Available blocks for unprivileged users
sourceraw docstring

set-bfree!cljs

(set-bfree! stats-fs value)

Free blocks in file system.

Free blocks in file system.
sourceraw docstring

set-blocks!cljs

(set-blocks! stats-fs value)

Total data blocks in file system.

Total data blocks in file system.
sourceraw docstring

set-bsize!cljs

(set-bsize! stats-fs value)

Optimal transfer block size.

Optimal transfer block size.
sourceraw docstring

set-ffree!cljs

(set-ffree! stats-fs value)

Free file nodes in file system.

Free file nodes in file system.
sourceraw docstring

set-files!cljs

(set-files! stats-fs value)

Total file nodes in file system.

Total file nodes in file system.
sourceraw docstring

set-type!cljs

(set-type! stats-fs value)

Type of file system.

Type of file system.
sourceraw docstring

typecljs

(type stats-fs)

Type of file system.

Type of file system.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close