Here I am trying to create zip file using .net 4.5 version which are having size greater than 4 GB. File format created as ZIP64. After that there is one more program written in java which will unzip and process. But java code is throwing error like "invalid entry size". Can we skip ZIP64 format so that java code can easily process the zip file ?
public static void ZipTest(string infile, string outfile)
{
using (ZipArchive archive = System.IO.Compression.ZipFile.Open(outfile,
ZipArchiveMode.Create))
{
archive.CreateEntryFromFile(infile, Path.GetFileName(infile));
}
}