提问人:Devin 提问时间:3/31/2021 最后编辑:Devin 更新时间:3/31/2021 访问量:301
如何使用 fstream [closed] 清除 C++ 中的 .txt 文件
How do I clear a .txt file in c++ using fstream [closed]
问:
如何使用 fstream 清除 C++ 中的 .txt 文件?我正在尝试在代码中的某个点清除我的 txt 文件。我该怎么做呢?
答:
1赞
Navid_pdp11
3/31/2021
#1
您可以使用以下代码片段:
std::fstream f;
f.open("path_to_file", std::ofstream::out|std::ofstream::trunc);
f.flush();
f.close();
评论