@lidapao/disk-info
v1.0.0
Published
Nodejs module to get drive information, tested on linux centos and windows
Downloads
22
Maintainers
Readme
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('-----------------------------------------');
}
});