C# Ionic.Zip 压缩execl文件成功后解压的时候提示文件已损坏怎么解决

![图片说明
![图片说明

public static string ZipFiles(string[] sourceFileList, string saveFullPath)
{

        using (ZipFile zip = new ZipFile(saveFullPath, Encoding.UTF8))
        {
            foreach (string fileToZip in sourceFileList)
            {
                string fileName = fileToZip.Substring(fileToZip.LastIndexOf("\\", StringComparison.Ordinal) + 1);
                zip.AddFile(fileToZip, "");
            }
            zip.Save();
        }
        return saveFullPath;
    }