Ahoy, i did some research regarding this topic before, but got no helpfull information,
as i know, i can read the "per entry comments" in a zip file by using something like this:
So my question is: Is it possible to read the "archive comment" using SharpCompress and if yes how? Or if not, does someone here know another way?
T.i.A.
as i know, i can read the "per entry comments" in a zip file by using something like this:
string filename="C:\\path\\to\\archive.zip";
ZipArchive archive = (ZipArchive)ArchiveFactory.Open(filename);
foreach(ZipArchiveEntry entry in archive.Entries){
Console.WriteLine("{0}: {1}",entry.FilePath,entry.Comment);
}
But until now i didn't find a way to get the "archive comment" of C:\path\to\archive.zip (or some actual existing zip file...).So my question is: Is it possible to read the "archive comment" using SharpCompress and if yes how? Or if not, does someone here know another way?
T.i.A.