npm.io
1.0.0 • Published 5 years ago

@financial-times/disk-space

Licence
MIT
Version
1.0.0
Deps
0
Size
11 kB
Vulns
0
Weekly
0

@financial-times/disk-space

This module wraps the df -BK (or df -bk if on OS X) command which shows the amount of disk space available on the file system that a given file is stored on. It returns the used size and total size of the file system in kilobytes.

Usage example

const diskSpace = require('@financial-times/disk-space');
diskSpace('/' , function(error, data) {
  console.log(data);  // returns { usedSize: 20, totalSize: 30 } in Kilobytes
});