在 C 上保存文件
我想在计算机上保存文件。我可以使用 fwrite 命令。
但我必须在使用 fwrite 命令保存时在 for 循环中枚举文件,例如 file01、file02、..。
所以我必须保存;例如十个文件(file01,fle02,file03....,file10...)
你能给我一个简单的示例代码吗?
I want to save files on computer.I can use fwrite commands.
But I have to enumarate files,like file01,file02, .. inside in the for cycle while saving using fwrite commands.
So I have to save ;for example ten files (file01,fle02,file03....,file10...)
Could you advise me a simple example code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在循环内,您需要
C99示例(
snprintf()
是“新”),省略了很多细节Inside a loop you need to
C99 example (
snprintf()
is "new"), with lots of details omitted您需要使用 fopen 逐个打开文件,如下所示:
You need to open the files one by one with fopen, something like this: