Open a given ebook and expand it to the given file path.

Namespace:  net.hazelhurst.epub
Assembly:  ePubLib (in ePubLib.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public bool Open(
	string eBookPath,
	string fileSystemPath
)
Visual Basic (Declaration)
Public Function Open ( _
	eBookPath As String, _
	fileSystemPath As String _
) As Boolean
Visual C++
public:
bool Open(
	String^ eBookPath, 
	String^ fileSystemPath
)

Parameters

eBookPath
Type: System..::.String
File path to the .epub file to be opened.
fileSystemPath
Type: System..::.String
File path where the extracted files should be placed.

Return Value

bool: true if the book is correctly opened, else false.

See Also