如何在 C++ 中创建具有用户提供的名称的文件?
我希望用户能够输入一些文本,然后计算机创建一个名为“文本是什么”的文件。在C++中。
I want the user to be able to type some text and then the computer creates a file called what ever the text was. In C++.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
注意:需要 POSIX。应该没问题,几乎所有现代操作系统都兼容 POSIX。
Note: Requires POSIX. Should be OK, practically all modern OSes are POSIX-compatible.
因为这看起来像家庭作业,所以我没有给出完整的例子。
查看:
#include
(首选)或#include
(旧版)Because this looks like homework, I'm not giving a complete example.
Look in:
#include <iostream>
(Preferred) or#include <cstdio>
(Legacy)