Provides information about a mounted file system.
Objects returned from 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.
bigint
options
true
number
StatFs { type: 1397114950, bsize: 4096, blocks: 121938943, bfree: 61058895, bavail: 61058895, files: 999, ffree: 1000000} Copy
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} Copy
StatFs { type: 1397114950n, bsize: 4096n, blocks: 121938943n, bfree: 61058895n, bavail: 61058895n, files: 999n, ffree: 1000000n}
v19.6.0, v18.15.0
Available blocks for unprivileged users
Free blocks in file system.
Total data blocks in file system.
Optimal transfer block size.
Free file nodes in file system.
Total file nodes in file system.
Type of file system.
Generated using TypeDoc
Provides information about a mounted file system.
Objects returned from statfs and its synchronous counterpart are of this type. If
bigint
in theoptions
passed to those methods istrue
, the numeric values will bebigint
instead ofnumber
.bigint
version:Since
v19.6.0, v18.15.0