Is anyone aware if commons-vfs provides a way to zip up FileObject
objects?  I have been unable to find documentation.  I am currently
using code (very incomplete listing below) like the following to zip up
files:

ZipOutputStream out = new ZipOutputStream(new FileOutputStream(tempFile));

The problem with this more "standard" approach is that I am unable to
write my output stream directly to anything other than the local file
system.  I would like the option to write zipped files directly to an
ftp, smb, etc. file system, thereby avoiding using the extra disk space
on the local pc where the application is being run.

Any help/insight is greatly appreciated.

Thanks,

Dean

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to