本文介绍了在追加模式下创建文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述


如何在追加模式下创建文件.我需要重用同一文件
只要应用程序正常运行,请帮我找到它.

谢谢
Mithun Nair

Hi,
How can I create Files in appending mode. I need to reuse the same file
whenever the application works.Help me to find it.

Thanks
Mithun Nair

推荐答案


std::ofstream myfilebin, myfiletxt;

// For binary files
myfilebin.open ("example.bin", std::ios::out | std::ios::app | std::ios::binary);

// For text files
myfiletxt.open ("example.txt", std::ios::out | std::ios::app);



有关其他详细信息,请参考 [ ^ ]文章.



For additional details refer to this[^] article.



这篇关于在追加模式下创建文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 00:08