I am trying to merge two zip files using python.
I worked until I realized that it does not behave when it comes to the symbolic links contained in the source zip file. Since I used zipfile.read () for each file, when I added it to a new zip file, it read a symbolic link and created a text file, not a symbolic link.
Does anyone know how to get python to keep a symbolic link from the source zip file when I write them to the target zip file?
Thanks.
source share