本文介绍了在C中删除文件的一部分的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何创建删除文件某些部分的功能?例如,文件为:
How can I create a function to delete certain part of a file? For example, the file is:
如果输入为
然后文件将变为
我需要此功能才能使程序正常工作,但我不知道该怎么做.
I need this function for my program to work, but I have no idea how can I do that.
推荐答案
在与原始文件相同的目录中打开一个新文件.将要替换原始文件内容的内容写入该文件.关闭新文件.在原始文件的顶部重命名新文件.
Open a new file in the same directory as the original file. Write to that file what you want to replace the contents of the original file. Close the new file. Rename the new file on top of the original file.
但是也许您应该考虑使用数据库而不是文本文件.
But perhaps you should consider using a database instead of a text file.
这篇关于在C中删除文件的一部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!