how to unzip epub format file? [closed]
Asked Answered
Y

1

10

I am developing an Ebook reader for iPhone that loads ePUB file. I would like to know how would I unzip ePUB file format. Is there any examples around?

Thanks.

Ynes answered 9/1, 2011 at 17:38 Comment(1)
This question appears to be off-topic because it is not about programmingCrisp
S
21

Unzipping is easier than zipping. Just change extension to .zip and use regular zip tool.

Or on Mac, in Terminal, use

unzip file.epub

Salience answered 18/1, 2011 at 12:59 Comment(2)
the OP has been asking this question in various forms for a while now, I think she or he wants someone to supply sample Objective C code so they don't have to learn anything much about EPUBArmillia
We might tell him that the zip format is well documented, that the EPUB standard tells us very precisely which zip version is to be used for ePub, and that the zlib library is available as part of iOS. Maybe add that Google or Bing will easily find all that information. And as a bonus (I wish someone had told me): He'll need the class NSURLProtocol.Choric

© 2022 - 2024 — McMap. All rights reserved.