[Zope] Export file attachment to actual filesystem

Dieter Maurer dieter@handshake.de
Mon, 12 May 2003 23:03:32 +0200


Daniel Tang wrote at 2003-5-12 11:11 -0400:
 > I've tried numerous ways to try to export a file attachment to a temp
 > directory in the actual filesystem, but have failed to do so.  Does anyone
 > know a way to do this?

Maybe, "ExtFile" helps you. It saves the file in the file system
(and keeps meta data in the ZODB).

"LocalFS" might, too.

When nothing helps, you can use an External Method and use
Python's file manipulation facilities (--> Python library reference)
to store the file in the file system. Be careful: there are security
risks.


Dieter