gpt4 book ai didi

python - 如何有效地用 python 中的空数据填充文件?

转载 作者:太空狗 更新时间:2023-10-30 00:20:48 25 4
gpt4 key购买 nike

我需要创建不包含任何数据的任意大小的文件。可能相当大。虽然我可以循环遍历并写入一个空字符,直到达到文件大小,但这看起来很难看。

with open(filename,'wb') as f:
# what goes here?

执行此操作的高效、pythonic 方法是什么?

最佳答案

您可以定位到特定位置并写入一个字节,操作系统会神奇地让文件的其余部分出现。

with open(filename, "wb") as f:
f.seek(999999)
f.write("\0")

你至少需要写一个字节才能工作。

关于python - 如何有效地用 python 中的空数据填充文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3377891/

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