You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
We've noticed that the zip files produced here fail to expand automatically when double-clicked on some Macs. The user gets a pop-up window saying, "Unable to expand '<file.zip>' into ''. (Error 2 - No such file or directory.)". However, the zip file will unpack just fine on the command line with unzip.
Most reports of this online are connected to too-large zip files (GBs) or corrupt files, but this happens with small files, and they open just fine on the command line. A couple of possibly-relevant issues:
I've found that Python produces different zip files depending on whether the output file handle is streaming (no seek method). It looks like OSX is happy with the non-streaming files, but can't deal with the streaming-produced ones.
The file out.zip was created with a standard file handle. It unzips just fine on OSX. In contrast, out-stream.zip was created with a file handle where seek was disabled. It doesn't unzip on OSX.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
We've noticed that the zip files produced here fail to expand automatically when double-clicked on some Macs. The user gets a pop-up window saying, "Unable to expand '<file.zip>' into ''. (Error 2 - No such file or directory.)". However, the zip file will unpack just fine on the command line with
unzip
.Most reports of this online are connected to too-large zip files (GBs) or corrupt files, but this happens with small files, and they open just fine on the command line. A couple of possibly-relevant issues:
I'm going to keep poking around here, but I wanted to document what I've found so far.
The text was updated successfully, but these errors were encountered: