如何在 C++ 中创建一个在命令行上给出名称的文件?
我正在做一些 C++ 教程,到目前为止我非常擅长。然而,有一件事情让我的知识获取困惑、脱轨,让我很头疼。
如何创建一个在命令行中指定名称的文件?
I'm doing some C++ tutorials, and so far I am pretty damn good at it. However, there is one thing that perplexed and forced off the rail my knowledge acquiring, which gives me a headache.
How to create a file with its name given on the command line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您问的是如何从命令行获取字符串来命名要打开的文件?
You're asking about how to get a string from the command line to name the file to open?
您需要解析命令行参数并使用其中之一作为文件的文件名。请参阅此代码:
请参阅此处了解更多详细信息: http://www.cprogramming.com/tutorial /c/lesson14.html
You need to parse the command line parameters and use one of them as the file name for your file. see this code:
See here for more details: http://www.cprogramming.com/tutorial/c/lesson14.html