Hello,
is there any demo of the Spire_Compression.Zip Class?
I try to create a zip-file. But there are no files in it.
This is my code:
[WebMethod]
public void zipArchiv() {
ZipArchive zip = new ZipArchive();
string zipFile = @"C:\Temp\Zip1.zip";
zip.AddFile(@"C:\Temp\WarenEingangPosObjectProperties.java");
zip.Save(zipFile);
}
Thanks for help
Oliver