gpt4 book ai didi

python - 在 Python 中截断文件头

转载 作者:行者123 更新时间:2023-11-28 16:33:05 24 4
gpt4 key购买 nike

如何截断头文件的x字节?我有一个 5 GB 的日志,我想先削减 3 GB(删除旧信息)。

最佳答案

使用seek方法:

fname = 'bigfile.log'
fid = open(fname, "rb")
fid.seek(3 * (2 ** 30) , 0) # go to the ~(3*10^9)th Byte, with respect to the start
Buffer = fid.read(2 * (2 ** 30))

点击here获取更多信息。

关于python - 在 Python 中截断文件头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29937817/

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