type
Post
status
Published
slug
2023/04/10/remove-the-last-line-use-c++
summary
tags
工具
思考
category
技术分享
icon
password
new update day
Property
Oct 22, 2023 01:31 PM
created days
Last edited time
Oct 22, 2023 01:31 PM
#include <csignal> #include <fstream> ofstream result_file(result_file_path); result_file.seekp(-1, ios::end); int size = result_file.tellp(); result_file.close(); FILE* file = fopen(result_file_path.c_str(), "ab+"); int a=fileno(file); ftruncate(a,size);
欢迎加入“喵星计算机技术研究院”,原创技术文章第一时间推送。
- 作者:tangcuyu
- 链接:https://expoli.tech/articles/2023/04/10/remove-the-last-line-use-c%2B%2B
- 声明:本文采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。
相关文章