This question is locked. New answers and comments are not allowed.
I am zipping the file using the Telerik.Windows.Zip. When i extract the zip file manually using winzip, it throws the below error
! C:\Users\Public\Music\Sample Music\New folder\3.zip: CRC failed in 3.zip.xml. The file is corrupt.
It does work sometime.
! C:\Users\Public\Music\Sample Music\New folder\3.zip: CRC failed in 3.zip.xml. The file is corrupt.
It does work sometime.
using (Stream stream = viewModel.OpenStream()){if (stream != null){using (ZipPackage zipPackage = ZipPackage.Create(stream)){zipPackage.AddStream(new MemoryStream(GetXmlData(tutorial)),viewModel.Filename+".xml");}}}
This info is very helpful for me