1

我有一个监视文件更改的应用程序。文件更改后,将向所有 socket.io 客户端发出事件。这是代码:

io.sockets.on('connection', function(socket) {
    fs.watchFile('./file.txt', {persistent:true}, function(data) {
        socket.emit('server', {message: 'File changed'});
    });
});

我的问题是,上面的代码是否会运行与 socket.io 客户端连接一样多的文件监视进程?

谢谢你。

4

1 回答 1

5

是的,您的代码将在fs.watchFile()每次客户端连接到服务器时运行,而不是您可以尝试。

io.sockets.on('connection',function(socket){
 socket.emit('server',{message:'hello'});
});

// the code below will check for change every 100secs and emit a message to all clients of / , and inform that the file has changed
fs.watchFile('FILEPATH', {
    persistent: true,
    interval: 100000,
  },
  function(data) {
    io.emit('server', { message:'FileChanged' });
  },
)
于 2013-03-25T08:45:19.267 回答