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 } ```
(bavail stats-fs)
Available blocks for unprivileged users
Available blocks for unprivileged users
(bfree stats-fs)
Free blocks in file system.
Free blocks in file system.
(blocks stats-fs)
Total data blocks in file system.
Total data blocks in file system.
(bsize stats-fs)
Optimal transfer block size.
Optimal transfer block size.
(ffree stats-fs)
Free file nodes in file system.
Free file nodes in file system.
(files stats-fs)
Total file nodes in file system.
Total file nodes in file system.
(set-bavail! stats-fs value)
Available blocks for unprivileged users
Available blocks for unprivileged users
(set-bfree! stats-fs value)
Free blocks in file system.
Free blocks in file system.
(set-blocks! stats-fs value)
Total data blocks in file system.
Total data blocks in file system.
(set-bsize! stats-fs value)
Optimal transfer block size.
Optimal transfer block size.
(set-ffree! stats-fs value)
Free file nodes in file system.
Free file nodes in file system.
(set-files! stats-fs value)
Total file nodes in file system.
Total file nodes in file system.
(set-type! stats-fs value)
Type of file system.
Type of file system.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close