Using Python, getting the name of files in a zip archive
-
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.
-
Answer:
Sure, have a look at http://docs.python.org/library/zipfile.html#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', ...]
Jonathan at Stack Overflow Visit the source
Other answers
http://docs.python.org/library/zipfile.html Specifically, try using the ZipFile.namelist() method.
Andrew Sledge
Related Q & A:
- How to add image to QTextBrowser using Python?Best solution by Stack Overflow
- How to verify a JWT using python PyJWT with public key?Best solution by Stack Overflow
- How to create a graph using python?Best solution by Stack Overflow
- How to Creating text File using Python?Best solution by Stack Overflow
- How do I put a password on a zip folder?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.