Table of Contents

TZippyReader.Open Method

Overloads

TZippyReader.Open(String)

Opens an existing filename. If the file isn't a supported zip file, an Exception will be raised.

Syntax

Namespace: FlexCel.Core

public void Open(String aZipFileName)

Parameters

<-> Parameter Type Description
aZipFileName String File to open.

See also

TZippyReader.Open(Stream, Boolean)

Opens an existing stream for reading. If the file isn't a supported zip file, an exception will be raised. If you prefer to not raise an exception, use TryOpen instead.

Syntax

Namespace: FlexCel.Core

public void Open(Stream aStream, Boolean aOwnsStream)

Parameters

<-> Parameter Type Description
aStream Stream Stream that contains the file to load.
aOwnsStream Boolean If true, aStream will be destroyed when you destroy this object. If false, no attempt to free the Stream will be done.

See also