1

我正在尝试递归地观察一个目录,但我偶然发现了一个命名空间问题。

我的代码如下所示:

for (i in files) {
    var file = path.join(process.cwd(), files[i]);
    fs.lstat(file, function(err, stats) {
        if (err) {
            throw err;
        } else {
            if (stats.isDirectory()) {
                // Watch the directory and traverse the child file.
                fs.watch(file);
                recursiveWatch(file);
            }   
        }   
    }); 
}

看来我只是在看统计的最后一个目录。我认为问题在于循环在 lstat 回调完成之前完成。因此,每次调用 lstat 回调时, file = 。我该如何解决这个问题?谢谢!

4

2 回答 2

2

您可能会考虑使用:(假设 ES5 并且这files是一个Array文件名)

files.forEach(function(file) {
  file = path.join(process.cwd(), file);
  fs.lstat(file, function(err, stats) {
    if (err) {
      throw err;
    } else {
      if (stats.isDirectory()) {
        // Watch the directory and traverse the child file.
        fs.watch(file);
        recursiveWatch(file);
      }
    }
  });
});
于 2012-04-28T04:05:25.550 回答
0

为此目的有node-watch包。

于 2014-12-10T14:48:11.457 回答