如何使用watchFile()在node.js中观看符号链接文件

时间:2012-02-20 16:22:34

标签: node.js

我正在尝试使用以下代码监视带有node.js'watchFile()的(软)符号链接的文件:

var fs=require('fs')
    , file= './somesymlink'
    , config= {persist:true, interval:1}; 

fs.watchFile(file, config, function(curr, prev) { 
    if((curr.mtime+'')!=(prev.mtime+'')) { 
        console.log( file+' changed'); 
    } 
});

在上面的代码中, ./ somesymlink / path / to / the / actual / file 的(软)符号链接。 当对/ path / to / / / /文件进行更改时,不会触发任何事件。我必须用/ path / to / / / / file替换符号链接才能使它工作。在我看来,watchFile无法观看符号链接的文件。当然我可以通过使用spawn + tail方法来完成这项工作,但我不想使用该路径,因为它会带来更多的开销。

所以我的问题是如何使用watchFile()在node.js中观看符号链接文件。提前谢谢大家。

1 个答案:

答案 0 :(得分:24)

您可以使用fs.readlink

fs.readlink(file, function(err, realFile) {
    if(!err) {
        fs.watch(realFile, ... );
    }
});

当然,你可以变得更有魅力并写一个可以观看文件或链接的小包装,所以你不必考虑它。

更新:以下是这样的包装器:

/** Helper for watchFile, also handling symlinks */
function watchFile(path, callback) {
    // Check if it's a link
    fs.lstat(path, function(err, stats) {
        if(err) {
            // Handle errors
            return callback(err);
        } else if(stats.isSymbolicLink()) {
            // Read symlink
            fs.readlink(path, function(err, realPath) {
                // Handle errors
                if(err) return callback(err);
                // Watch the real file
                fs.watch(realPath, callback);
            });
        } else {
            // It's not a symlink, just watch it
            fs.watch(path, callback);
        }
    });
}