Hi everybody,
Here's my challange:
When user clicks link "download all images" on web page, I would like to
-----------------------------------------------------------------------------------
1. list all images in particular folder (easy)
2. create ZIP file with headers only and send them back immediatly into Response stream.
3. zip 1 file at-a-time and write it to Response stream (for each file in the list)
4. write ZIP footer into Response stream. DONE.
-----------------------------------------------------------------------------------
NOTE: compression is not a factor - I'm just using standard ZIP compr. at level 0, so this acts as bundling mechanism for all files to be downloaded in 1 download instead of n-number of times.
The number of images in folder to zip will change so Zipping has to be dynamicly done every time.
Image files are 70K on average, but there could be a lot of them 1000+, so creating separate zip file is NOT AN OPTION. :/
I have not found how to do it in IC#ZipLib. Any Ideas? Thanks. :)
-Vad