In a python web application, I'm packaging up some stuff in a zip-file. I want to do this completely on the fly, in memory, without touching the disk. This goes fine using ZipFile.writestr as long as I'm creating a flat directory structure, but how do I create directories inside the zip?

I'm using python2.4.

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

link|improve this question

47% accept rate
3  
Have you tried simply setting the filename of a file to add to 'directory/filename.ext'? – theomega Aug 31 '10 at 15:01
@theomega is correct. – mahmoud Aug 31 '10 at 18:20
feedback

3 Answers

up vote 2 down vote accepted

What 'theomega' said in the comment to my original post, adding a '/' in the filename does the trick. Thanks!

from zipfile import ZipFile
from StringIO import StringIO

inMemoryOutputFile = StringIO()

zipFile = ZipFile(inMemoryOutputFile, 'w') 
zipFile.writestr('OEBPS/content.xhtml', 'hello world')
zipFile.close()

inMemoryOutputFile.seek(0)
link|improve this answer
feedback

Take a look at this answer: http://stackoverflow.com/questions/458436/adding-folders-to-a-zip-file-using-python/459419#459419

It basically suggest using the second argument of zipfile.write to add a file in a particular path within the zip file.

link|improve this answer
feedback

Use a StringIO. It is apparently OK to use them for zipfiles.

link|improve this answer
We do this also. Works very nicely. – S.Lott Aug 31 '10 at 15:47
feedback

Your Answer

 
or
required, but never shown

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