为什么我在 Mac 上看不到使用 browserify-fs 创建的文件,尽管我可以使用 browserify-fs 读取它们

Why can I not see files created with browserify-fs on my Mac though I can read them with browserify-fs

为了简单起见,我将使用 browserify-fs 包页面上给出的示例,尽管当我使用我自己创建的文件时会发生完全相同的事情。写入似乎有效,因为读取似乎读取文件,通过 console.log 喷出其内容。我已经尝试重新启动我的机器并 运行 只是读取以确保文件没有潜伏在内存中,并且读取仍然有效。然而,没有多少搜索显示文件实际上在我的磁盘上 - 甚至不在 'home' 目录中,该目录似乎是空的。有什么想法吗?


fs.mkdir('/home', function() {
    fs.writeFile('/home/hello-world.txt', 'Hello world!\n', function() {
        fs.readFile('/home/hello-world.txt', 'utf-8', function(err, data) {
            console.log(data);
        });
    });
});```

这是出于安全考虑。浏览器没有将文件写入本地计算机的权限。 看到这个 -