20 Dec
2004
20 Dec
'04
5:52 p.m.
Bernd Dorn wrote at 2004-12-20 17:03 +0100:
i'm currently implementing a virtual filesystem client using zope and gnome.vfs
i have the following question regarding file uploads
how do i get a file like object (for iteration) from a "POST" upload request in order to proxy the data to the actual target storage
You get a "ZPublisher.HTTPRequest.FileUpload" object which is file like. Especially, it has a "read" method... -- Dieter