do {
filename = oZipFile.getCurrentFileName();
debug("filename="+filename);
var found = oZipFile.locateFile(filename);
if (!found) {
debug("### NOT FOUND ###");
}
} while(oZipFile.goToNextFile());
Om Mac OS X, this nicely shows all files in the zip, on Windows, I get ### NOT FOUND ### for all files.
Any special trick on Windows for finding the same path you just got from the zipFile?
This is just a cut down of the actual code that collect files in one place and the locate the in the zip later on for extraction.