1


我正在尝试写入其中包含现有文件夹的 zip 存档。到目前为止,我只能:

x.write(newfiles)这给了我,dir1/dir2/dir...n/newfiles

或者

x.write(newfiles, os.path.rel(newfiles, root))它给了我存档中任何子目录之外的所有新文件。

但是,我需要完成的是让我的新文件写入我的存档中已经存在的子目录。


请帮忙!谢谢!

我的代码:

#create a list of the png files to be added
img_lib = []
for root, dirs, files in os.walk(img_dir):
    for i in files:
        img_lib.append(root + '/' + i)

#open kmz archive for editing in 'append' mode
kmzarc = zipfile.ZipFile(TCP_kmz, mode = 'a')

#loop through list of available png files in img_lib and add to archive
for i in img_lib:
    kmzarc.write(i, 'images/'+os.path.relpath(i, root))

#close file
kmzarc.close()
4

0 回答 0