gpt4 book ai didi

python-3.x - 是否可以使用 Python tarfile 读取并附加到 tar

转载 作者:行者123 更新时间:2023-12-04 10:18:00 39 4
gpt4 key购买 nike

我正在尝试读取 tar 文件,识别一些文件,读取它们,然后使用 Python 将新文件写入同一个 tarfile。似乎只有在模式为“r”时才允许提取文件()。是这种情况吗?有没有办法既从内存中的 tar 中提取文件,又可以同时将新文件附加到 tar 中?示例代码如下:

def genEntry(tar, tarinfo, source):
heading = re.compile(r'#+(\s+)?')
f = tar.extractfile(tarinfo)
f.seek(0)
while True:
line = f.readline().decode()
print(line)
if not line:
break
print(line)
if heading.match(line):
title = heading.sub('',line).replace('\n','')
return[tarinfo.name.replace(source,'.'), title]
return [tarinfo.name.replace(source,'.'), tarinfo.name.replace(source,'')]

with tarfile.open(args.source, mode='a') as tar:
source = 'somepath'
subDir = 'someSubDir'
path = '/'.join((source, subDir))
if tar.getmember(path):
pathre = re.compile(r'{}\/.+?\/readme\.md'.format(re.escape(path)), re.IGNORECASE)
for tarinfo in tar.getmembers():
if re.search(pathre, tarinfo.name):
genEntry(tar, tarinfo, source)
...

这将产生以下错误:

OSError: bad operation for mode 'a'

最佳答案

据我所知,一次读取并附加到 tarfile 是不可能的。虽然我最终朝着促进 tarfile 流入和流出 Python 脚本的方向前进,但我确实为我的上述问题确定了一个两遍读/写解决方案。

这基本上是我所采用的方法。

    files = []
with tarfile.open(tarpath) as tar:
files= readTar(tar)
with tarfile.open(tarpath, mode='a') as tar:
for fileobj in files:
writeFile(tar, fileobj[0], fileobj[1])

def readTar(tar):
# Your your logic to build the files you want to build in the amended file here

def writeFile(tar, tarinfo, payload):
if len(payload) != 0:
data = payload.encode('utf8')
tarinfo.mode = 0o444
tarinfo.size = len(data)
tar.addfile(tarinfo, fileobj=BytesIO(data))
return tar

关于python-3.x - 是否可以使用 Python tarfile 读取并附加到 tar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60994367/

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