Is there a way to write a string directly to a tarfile? From http://docs.python.org/library/tarfile.html it looks like only files already written to the file system can be added.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I would say it's possible, by playing with TarInfo e TarFile.addfile passing a StringIO as a fileobject. Very rough, but works
|
||||
|
|
|
As Stefano pointed out, you can use
You'll probably want to fill other fields of |
|||||||
|
|
You have to use TarInfo objects and the addfile method instead of the usual add method:
|
|||
|
|