c++清除文件特定位置后的内容

发布于 2024-11-10 06:20:25 字数 284 浏览 3 评论 0原文

我想使用 fstream 或最好使用 QFile 来删除文件之后特定位置(不是开头或结尾)的内容文件的)。因此,我首先使用 QFile::seek(long)恒定时间,然后我想删除剩余的内容,也是在恒定时间内。您推荐什么方法?

I would like to use either fstream or preferably QFile to remove the contents of a file after a specific position (that's not the beginning or the end of the file). So I first jump to that position with QFile::seek(long) or equivalent in constant time, and then I would like to remove the remainder of the content, also in constant time. What approach do you recommend?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

贪恋 2024-11-17 06:20:25

您可以使用 QFile::resize 将文件大小调整为您想要的大小。我敢打赌它在幕后使用了truncate(请参阅安德鲁的帖子)。

You can use QFile::resize to resize the file to the size you want. I bet it uses truncate behind the scenes (see Andrew's post).

梦巷 2024-11-17 06:20:25

查找...

#include <unistd.h>
int ftruncate(int fildes, off_t length);
int truncate(const char *path, off_t length);

从这个 网站 快速截取结果...

如果文件之前大于长度,则多余的数据将被丢弃。

您可能还会发现这个答案很有趣。

Lookup...

#include <unistd.h>
int ftruncate(int fildes, off_t length);
int truncate(const char *path, off_t length);

A quick snip from this site yielded...

If the file previously was larger than length, the extra data is discarded.

You may also find this answer interesting.

你爱我像她 2024-11-17 06:20:25

seek() 之后的新位置视为文件末尾。当您完成文件的处理后,请编写从开始到此时的所有内容。

Consider the new position, after the seek(), to be the end of the file. When you're done working with the file write everything from the start up until that point.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文