node.js 用目录写入文件?
如果我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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