如何在C语言中清除文件的全部内容?
我有一个包含 user1 的一些数据的文件。我想通过清除文件内容来为 user2 使用相同的文件。
我的想法是,当新用户到来时,前一个用户的数据应该是清晰的,并且应该为新用户准备好相同的文件。
I have a file with some of user1's data. I want to use the same file for user2 by clearing the content of the file.
My idea is that when a new user comes, data of the previous user should be clear and the same file should be ready for the new user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
正如 @stefan 所说,使用
fopen()
和“w”模式将为您完成这项工作。当您打开带有“w”标志的文件时,它会创建一个用于写入的空文件。如果同名文件已存在,则其内容将被删除,并且该文件将被视为空的新文件。如果文件已经打开,您可以使用 stdio.h 中的“w”模式的 freopen() 函数,因为它将首先关闭文件,然后重新打开它以写入擦除文件中之前的任何内容。
As @stefan said using
fopen()
with "w" mode will do the job for you. When you open a file with "w" flag it creates an empty file for writing. If a file with the same name already exists its contents are erased and the file is treated as an empty new file.If the file is already open you can use
freopen()
function from stdio.h with "w" mode as it will first close the file and then reopen it for writing erasing whatever was in the file previously.使用
fopen(filename, flag)
只需使用 flag="w"
或"wb"
打开它,它就会被清除with
fopen(filename, flag)
just open it with flag="w"
or"wb"
and it will be cleared为什么这有效:
(引用自http://www.cplusplus.com/reference/cstdio/fopen/)
Why this works:
(quote from http://www.cplusplus.com/reference/cstdio/fopen/)
有两种方法:
There are two ways:
我正在使用:
I am using:
我更喜欢使用:-
I prefer to use:-