Create and Extract .ZIP in Windows Form
I want to create a .zip file using c#,for example,i have an xml file as a database and i want to backup that xml file and put it inside a zip file and save it, and the second part is i want to unzip and the zip file and take out the xml file when i want to restore it.
Hemant SrivastavaPosted Oct 8, 2013, 10:32 AM
To compress:
http://www.dotnetperls.com/gzipstream
To decompress:
http://www.dotnetperls.com/decompress
Hope it would help.