How to Zip the folder using C#
public static void AddFolderToZip(string sourcePath,string zipFullName) { DirectoryInfo CurrentFolder = new DirectoryInfo(sourcePath); DirectoryInfo RootFolder = CurrentFolder.Parent; DirectoryInfo[] SubFolders = RootFolder.GetDirectories(CurrentFolder.Name); if (SubFolders.LongLength > 0) { //Add all subfolders to the zip if any ...