Observe file changes with node.js

后端 未结 3 743
栀梦
栀梦 2020-11-28 08:39

I have the following UseCase:

A creates a Chat and invites B and C - On the Server A creates a File. A, B and C writes messages into this file. A,

3条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 09:03

    Good news is that you can observe filechanges with Node's API.

    This however doesn't give you access to the contents that has been written into the file. You can maybe use the fs.appendFile(); function so that when something is being written into the file you emit an event to something else that "logs" your new data that is being written.

    fs.watch(): Directly pasted from the docs

    fs.watch('somedir', function (event, filename) {
        console.log('event is: ' + event);
        if (filename) {
            console.log('filename provided: ' + filename);
        } else {
            console.log('filename not provided');
        }
    });
    

    Read here about the fs.watch(); function

    EDIT: You can use the function

    fs.watchFile(); 
    

    Read here about the fs.watchFile(); function

    This will allow you to watch a file for changes. Ie. whenever it is accessed by some other processes of any kind.

提交回复
热议问题