jigneshvasoya / fuse-zip

Automatically exported from code.google.com/p/fuse-zip
GNU Lesser General Public License v3.0
0 stars 0 forks source link

Zip64 Support #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I created a zip file with 7za from p7zip since zip under Linux does not seem to 
create ZIP64 archives.  

1) Run "7za a  -mx7 -tzip  ../myzip.zip ." to create myzip.zip.  In this case 
"." is a directory with 241 GB of data that compresses down to 15 GB.

2) Run "7za t ../myzip.zip" and let it run to the end, to prove the zip is 
valid.  Output:

Everything is Ok

Folders: 10
Files: 18467
Size:       258006031353
Compressed: 16367764383

3) Attempt fuse-zip mount:
  mkdir /tmp/fuse-test
  cd ..
  fuse-zip myzip.zip /tmp/fuse-test

4) Receive error message 

fuse-zip: cannot open zip archive myzip.zip: Not a zip archive

Either there is another way to create a ZIP64 archive that does work, or there 
is no ZIP64 support in fuse-zip.  I have been able to find no answer anywhere 
to this problem.  If the support is not there now, is it on the roadmap?

Thanks - 

Original issue reported on code.google.com by mbay...@gmail.com on 4 Mar 2011 at 5:55

GoogleCodeExporter commented 9 years ago
Currently libzip does not supports ZIP64 file format. So we need to wait until 
libzip authors implements that.

Original comment by alexander.galanin on 20 Apr 2012 at 4:51

GoogleCodeExporter commented 9 years ago
The latest dev version of libzip has had ZIP64 since May. However, they haven't 
released a new version with it yet.

I went ahead and built fuse-zip with this latest build, and it looks like I can 
open large files with no code changes! I've tested a 7.9GB file and a 9.1GB 
file, and both worked ok.

Original comment by brampton on 8 Sep 2012 at 3:10

GoogleCodeExporter commented 9 years ago
Good news!

Original comment by alexander.galanin on 14 Sep 2012 at 4:08

GoogleCodeExporter commented 9 years ago

Original comment by alexander.galanin on 10 Oct 2012 at 1:05

GoogleCodeExporter commented 9 years ago

Original comment by alexander.galanin on 10 Oct 2012 at 1:06

GoogleCodeExporter commented 9 years ago
Fixed in 0.3.0

Original comment by alexander.galanin on 29 Jun 2013 at 5:30