Hello friends,
Below is the code to unzip a zip file . However , problem occurs when there is a zip file within that zip file...please tell me how to do that? ie..unzip a file withing a zip file too...??
private void btnok_Click(object sender, EventArgs e)
{
FastZip zp = new FastZip();
zp.ExtractZip(txtpath.Text, txtdestination.Text, "");
MessageBox.Show("Folder Unzipped Successfully");
}
CYA
Rohan