文件系统事件

概念

示例

监听当前目录下的文件系统事件:

/**
 * watcher.ts
 */
const watcher = Deno.watchFs(".");
for await (const event of watcher) {
  console.log(">>>> event", event);
  // 示例事件:{ kind: "create", paths: [ "/home/alice/deno/foo.txt" ] }
}

使用以下命令运行:

deno run --allow-read watcher.ts

现在尝试在与 watcher.ts 相同的目录中添加、删除和修改文件。

请注意,事件的确切顺序可能因操作系统而异。此功能根据平台使用不同的系统调用: