The first time works fine, but the second time returns the error "ziperr,illegal variable":
Code: Select all
revZipExtractItemToVariable myArchive, itemInMyArchive1, myVariable
// Do some stuff here
revZipExtractItemToVariable myArchive, itemInMyArchive2, myVariable
Code: Select all
revZipExtractItemToVariable myArchive, itemInMyArchive1, myVariable1
// Do some stuff here
revZipExtractItemToVariable myArchive, itemInMyArchive2, myVariable2
If you're wondering, I want to do this so that I can loop through the items in a zip archive, getting the content of each item into a variable, then doing things with that content.
Can anyone explain what's going on (or suggest a good workround)?
Bill