Click or drag to resize

ICSharpWorkerIcsUnzipFirstDumpToFile(String, String, Int32) Method

Unpacks the first file from the archive (no subfolders) and returns information about it. If maxBytes > is 0, only maxBytes are unpacked to determine the information. The main purpose of this routine is to get you started quickly. from packed dumps in order to obtain information, without having to unpack the entire dump (usually > 3GB).

Namespace: NetEti.FileTools.Zip
Assembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntax
public ZippedFileInfo IcsUnzipFirstDumpToFile(
	
	string zipPathAndFile,
	
	string newFilePath,
	
	int maxBytes
)

Parameters

zipPathAndFile  String
Path and name of the archive
newFilePath  String
Path and name of the unpacked file, if zero or "" the original path name from the archive is used
maxBytes  Int32
If > 0, only unpack corresponding bytes

Return value

ZippedFileInfo
Path, size and timestamp of the file in the archive
See also