我想实现一个node.js程序来检查文件系统(例如ext3 ..)的状态。但是,fs模块仅提供文件的操作。我必须使用别的第三部分模块吗?
答案 0 :(得分:0)
一个选项是捕获'df'命令的输出并解析它。
您可以使用子进程运行命令。 http://nodejs.org/docs/latest/api/child_processes.html#child_process.exec
var child_process = require('child_process');
child_process.exec('df', function(err, stdout, stderr) {
// 'stdout' here is a string containing the things printed by 'df'
console.log(stdout);
});