1.0.0 • Published 1 year ago

@lidapao/disk-info v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

diskinfo

nodejs module to get disk information, will call system command to get drive info. Parse result and load info in array.

usage

var d = require('diskinfo');

d.getDrives(function(err, aDrives) {

      for (var i = 0; i < aDrives.length; i++) {
            console.log('Drive ' + aDrives[i].filesystem);
            console.log('blocks ' + aDrives[i].blocks);
            console.log('used ' + aDrives[i].used);
            console.log('available ' + aDrives[i].available);
            console.log('capacity ' + aDrives[i].capacity);
            console.log('mounted ' + aDrives[i].mounted);
            console.log('-----------------------------------------');
      }

});