I'm trying to merge two zip files using python.
I had it working, until I realised that it wasn't behaving when it came to the symbolic links that the source zip file contained. Since I was using zipfile.read() on each file when I was adding it to the new zip file, it was reading the symlink and creating a text file, not a symlink.
Does anyone know of a way to get python to preserve the symlink's from the source zip file when I'm writing them to the target zip file?
Thanks.