查看https://deno.land/manual/examples/file_system_events 这是下面的代码。
const watcher = Deno.watchFs("./src");
for await (const event of watcher) {
console.log(">>>> event", event);
// { kind: "create", paths: [ "/foo.txt" ] }
}
但是,当我尝试获得--allow-read
权限时,我得到了error: Is a directory
deno run --allow-read src/ main.ts
error: Is a directory (os error 21)
如何确保--allow-read
指定/src
文件夹允许显式权限?
我知道我可以使用-A
to --allow-all
,但是,我想明确允许的权限。