gpt4 book ai didi

c++ - 用c++清除文本文件中的数据

转载 作者:IT老高 更新时间:2023-10-28 12:40:47 27 4
gpt4 key购买 nike

我正在使用 C++ 编程。在我的代码中,我创建了一个文本文件,将数据写入文件并使用流从文件中读取,在完成我希望的序列后,我希望清除 txt 文件中的所有数据。谁能告诉我清除txt文件中数据的命令。谢谢

最佳答案

如果您只是使用 truncate 选项打开文件进行写入,您将删除内容。

std::ofstream ofs;
ofs.open("test.txt", std::ofstream::out | std::ofstream::trunc);
ofs.close();

http://www.cplusplus.com/reference/fstream/ofstream/open/

关于c++ - 用c++清除文本文件中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17032970/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com