I'm developing an WP 8.1 application, and I need to read an EPub file.
Unfortunately, all the API found were discontinued, for this reason, I am trying to use generic API for C#, like this.
string file = @"c:\books\example.epub";
try {
//Initialize EPub object
Epub epub = new Epub(file);
}
There is an error in object initialization...
System.IO.FileNotFoundException
Apparently, it does not find the file.
In describing the API above, warns may need to use the following API, but I don't know how and why.