Uploading And Extracting Zip in Asp.net
Method for uploading and extracting a zip.
Note:-
1.Please provide the path for saving the zip,dont copy the same text as it given below.
2.Please do not change any syntax of method you have to only change the destination folder path .
public void Upload_And_Extract_ZIP()
{
if (FileUploadControlID.HasFile)
{
string filename = Path.GetFileName(FileUploadControlID.FileName);
string ext = Path.GetExtension(FileUploadControlID.FileName);
string Destination_Folder_Path = “Enter the full folder path where you want to save the zip”;