Originally posted by: Long Nguyen
I was download the Czip source, it good to compress a file, but i want to compress memory but i coundn't do? You can help me? Thanks!
ReplyOriginally posted by: Petri Simolin
Following function in gzip.c
int dounzip( int inFile, int outFile )
{
int method;
// ---------- INSERT THIS LINE
clear_bufs();
// ---------- END OF FIX
if ( ( method = get_method( inFile ) ) < 0 )
return -1;
bytes_out=0;
if ( unzip( inFile, outFile ) != 0 )
return -1;
return 0;
}
without this you must terminate your application between files...
ReplyOriginally posted by: Terry S
Nice routine, but I con not decompress more than one file at a time with the dll loaded, the calling application must terminate, then restart to do onther file. Anyone know what variable is prob. not being initialized?
ReplyOriginally posted by: banner
I want to add files and its paths to gz file.Can anyone teach me how to do it?Any comments is welcome.
ReplyOriginally posted by: Mario
Hi,
Can we spawn the zipped file on multiple dislettes please?
Originally posted by: keith liu
I need a c++ source to zip files compitable with Pkware,
I have try XCEED ZIP 4.1, but it seems that it needs to be
registered before you can use it?
Any suggestion, Thanks a lot.
Reply
Originally posted by: David LAFAY
Very cool DLL but how to add a password to the
zipped file and how to crypt de zipped file
Thanks
dlafay@pop.multimania.com
ReplyOriginally posted by: Alex
I have a problem. I want to add or extract more then one file to or from my archive.How can I do this? If you can please help me..Sample code will be very usefull.
Thanks.
Originally posted by: Zodrak
Merci mult pentru cod . Sper sa fie util.
Tank you very much for the code .I hope to be useful.
Originally posted by: Karim
I was able to read/write zip files created from CZip and CUnzip, but I couldn't get WinZip to open them even after I removed the ".zip" extension.
I', using VC++ 6.0
If anyone has a suggestion, please let me know.
Thank you.