I have several very large zip files available to download on a website. I am using Flask microframework (based on Werkzeug) which uses Python.

Is there a way to show the contents of a zip file (i.e. file and folder names) - to someone on a webpage - without actually downloading it? As in doing the working out server side.

Assume that I do not know what are in the zip archives myself.

I apoligize that this post does not include code.

Thank you for helping.

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Sure, have a look at zipfile.ZipFile.namelist(). Usage is pretty simple, as you'd expect: you just create a ZipFile object for the file you want, and then namelist() gives you a list of the paths of files stored in the archive.

with ZipFile('foo.zip', 'r') as f:
    names = f.namelist()
print names
# ['file1', 'folder1/file2', ...]
link|improve this answer
lol @ Stackoverflow race conditions – Andrew Sledge Sep 9 '10 at 17:12
oh heh, sorry @Andrew I didn't even notice your answer there, I was in such a hurry to edit mine ;-) – David Zaslavsky Sep 9 '10 at 17:15
no biggie. Good answer tho :) – Andrew Sledge Sep 9 '10 at 17:26
Great, thanks for the answer. – Jonathan Sep 10 '10 at 9:22
feedback

http://docs.python.org/library/zipfile.html

Specifically, try using the ZipFile.namelist() method.

link|improve this answer
+1 for being first – David Zaslavsky Sep 9 '10 at 17:16
Thanks for answering first too :D – Jonathan Sep 10 '10 at 9:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.