Extract

IArchiveFileEntry.Extract method (1 of 2)

Extracts the entry to the filesystem by the path provided.

public FileInfo Extract(string path)
ParameterTypeDescription
pathStringThe path to destination file. If the file already exists, it will be overwritten.

Return Value

FileInfo instance containing extracted data.

See Also


IArchiveFileEntry.Extract method (2 of 2)

Extracts the entry to the stream provided.

public void Extract(Stream destination)
ParameterTypeDescription
destinationStreamDestination stream. Must be writable.

See Also