Hi,
I am getting a "System.IndexOutOfRangeException" when one of the file that i am adding to the zip is about 15Mb.
I can't find any size isse any where.
has someone got any idear.
thanks
code:
C1ZipFile zip = new C1ZipFile();
zip.Create(ReleaseFolder + @"\DiagnosticTester.zip");
string[] Files = Directory.GetFiles(dir + @"\", "*.*");
foreach (string file in Files)
{
zip.Entries.Add(file, 2);
}
zip.Close();
(i am using the C1.C1Zip.2.Dll)