fs.watch(__ dirname +" /arquivo.txt&#34 ;, function(event,filename)

时间:2018-05-10 09:39:24

标签: html node.js

fs.watch(__dirname + "/arquivo.txt", function(event, filename)

必须提供什么而不是arquivo.txt? 我的文件名为doc.txt,位于:C:/projects/test/

1 个答案:

答案 0 :(得分:2)

访问路径中文件的代码段(C:/projects/test/doc.txt)

const fs = require("fs");
fs.watch("C:/projects/test/doc.txt" , (eventType, filename) => {
    console.log(`event type is: ${eventType}`);
    if (filename) {
      console.log(`filename provided: ${filename}`);
    } else {
      console.log('filename not provided');
    }
  });

__ dirname - 当前正在运行的模块的目录名称。您可以使用__dirname访问当前运行模块中的文件。