Initially I was thinking of using os.path.isdir but I don't think this works for zip files. Is there a way to peek into the zip file and verify that this directory exists? I would like to prevent using unzip -l "$@" as much as possible, but if that's the only solution then I guess I have no choice.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||
|
|
|
Just check the filename with "/" at the end of it.
You use this line
because it is possible that archive contains no directory explicitly; just a path with a directory name. Execution result:
|
|||||||||||
|
|
You can check for the directories with ZipFile.namelist().
|
|||||||||
|
|
You can accomplish this using the built-in library ZipFile.
Tested and functional with Python32. |
|||||||
|