I’m unzipping epub file with zip.uncompress()
, what I’ve inspected:
- dstBaseDir - can be only
system.*
(e.g. system.CachesDirectory) - guess it should be mentioned in documentation. - You can’t access files after
zip.uncompress( zipOptions )
in your code, because it has strange implementation. There is option to access files insidelistener
, BUT you can’t modify. So I guess I could just use multithreading, but sadlylistener
is executing in hidden thread, which you can’t wait for in your code.
My main question is how to modify unzipped files using this plugin?
And minor question is where to find source code of this plugin?