EggEntry.Extract

Extract(string)

Extracts the entry to the filesystem by the path provided.

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

Return Value

The file info of the extracted file.

See Also


Extract(Stream)

Extracts the entry to the stream provided.

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

See Also