如何用fstream 清文件内容
时间: 2024-02-13 18:32:24 浏览: 94
详解C++文件读写操作
5星 · 资源好评率100%
您可以将文件以写入模式打开,这将清空文件内容。这可以使用以下代码实现:
```
#include <fstream>
int main() {
std::ofstream ofs("filename.txt", std::ofstream::out | std::ofstream::trunc);
ofs.close();
return 0;
}
```
请注意,这将删除文件中的所有内容,因此请谨慎操作。
阅读全文