I am writing an app that would allow random access to files in a zip archive based on the md5sum of the files. To do that, I am planning to map each hashsum to a tuple of (zip_file, file_index)
.
Can I rely on the order of Files in archive/zip.Reader
? I presume it's same as the order of files in the archive but couldn't find any resources.
Thanks!