1
vote
1answer
45 views

Zip stream implementation with C in embedded devices

I have to embed a large text file in the limited space of internal memory of a MCU. This MCU will use the content of the text file for some purposes later. The memory limitation dos not allow me to ...
0
votes
2answers
133 views

What should I use for zipping instead of GZipStream in Windows Mobile?

I am developing an application for Windows Mobile 6 in Microsoft Visual Studio 2005. I have to unzip a text received by web service. But when I use GZipStream I get the following error: Error 1 ...
0
votes
2answers
170 views

downloading large amount of files

I'm researching solutions for a potential client. They're requesting the ability to download a large amount of MP3's (1000+) from their online catalog. I've researched/tested building a zip ...
3
votes
3answers
832 views

zipping with c#

i am trying to use GZipStream to create a gz file using c#. my problem is that i have a list that contains strings. and i need to create a password protected zip file, and put in it a text file ...