How do I get the version attribute of a file?
I tried the "Version" prop but it gives me the same number for all files
My Code:
while (getNextEntry)
{
ZipEntry entry = inStream.GetNextEntry();
getNextEntry = (entry != null);
if (getNextEntry)
{
string fileType = Path.GetExtension(entry.Name);
string version = "unavailable"; // entry.Version.ToString();
// etc ...
}
}