Skip to content

demmer/node-statvfs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

statvfs

statvfs is a super simple module that just gives you access to statvfs(3). If you're not familiar with it, you use it to get information about the filesystem. This API looks like node's native fs.stat API. Run man statvfs for more information.

Usage

var statvfs = require('statvfs');

statvfs('/tmp', function (err, stats) {
    assert.ifError(err); // on errno, will be a node ErrnoException
	console.log(JSON.stringify(stats, null, 2));
	/*
	{
	  "bsize": 4096,
	  "frsize": 4096,
	  "blocks": 262144,
      "bfree": 252508,
	  "bavail": 252508,
	  "files": 292304,
	  "ffree": 289126,
	  "favail": 289126,
	  "fsid": 140509193,
	  "basetype": "tmpfs",
	  "flag": 4,
	  "namemax": 255,
	  "fstr": "/tmp"
	}
	*/
});

});

Installation

npm install statvfs

Note this is a native add-on. You will need gcc, python, blah blah blah.

License

MIT

About

node module that supports statvfs

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 83.2%
  • JavaScript 14.6%
  • Python 2.2%