You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm tring to get md5 of the archive, unfortunately each time I create an archive it has different md5 of the content. I thought that it was because of file creation time, so I set:
zip.file(file.path, file, { date: new Date('January 01, 2019 00:00:01') })
But unfortunately there is always small difference between archives:
How to calculate md5 or crc or whatever in this case, to be sure that two archives contains the same files ?
The text was updated successfully, but these errors were encountered:
Only the zips are different, the metadata may be different but the files' content should be the same, I think. You would have to compare the checksum of every single file between the two zips to see if they have the same files.
Hi,
I'm tring to get md5 of the archive, unfortunately each time I create an archive it has different md5 of the content. I thought that it was because of file creation time, so I set:
zip.file(file.path, file, { date: new Date('January 01, 2019 00:00:01') })
But unfortunately there is always small difference between archives:
How to calculate md5 or crc or whatever in this case, to be sure that two archives contains the same files ?
The text was updated successfully, but these errors were encountered: