node.js 用目录写入文件?

发布于 2024-11-05 07:50:48 字数 171 浏览 0 评论 0原文

如果我使用 fs.writeFile 我得到:

Error: ENOENT, No such file or directory

我认为这是因为容纳该文件的目录不存在。

我应该先使用 fs.mkdir 还是还有其他东西?

谢谢。

If I use fs.writeFile I get:

Error: ENOENT, No such file or directory

I think that's because the directories that houses the file doesn't exist.

Am I supposed to use fs.mkdir first or is there something else?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花落人离去 2024-11-12 07:50:48

Node.js 的核心 API 中缺少递归目录创建器。

还没有人做出相当于 Perl 的 File::Path,但这里至少有一个 Node 中的递归创建器:

https ://github.com/isaacs/npm/blob/master/lib/utils/mkdir-p.js

编辑:
这可能更容易使用:https://github.com/bpedro/node-fs

Node.js lacks a recursive directory creator in the core API.

Someone is yet to make something equivalent to Perl's File::Path, but here's at least a recursive creator in Node:

https://github.com/isaacs/npm/blob/master/lib/utils/mkdir-p.js

Edit:
This is probably easier to use: https://github.com/bpedro/node-fs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文