 | 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.ZipAssembly: NetEti.ZipAccess (in NetEti.ZipAccess.dll) Version: 1.0.0+90532d84a01ea1dad6525ec1859a76670aba8306
Syntaxpublic ZippedFileInfo IcsUnzipFirstDumpToFile(
string zipPathAndFile,
string newFilePath,
int maxBytes
)
Public Function IcsUnzipFirstDumpToFile (
zipPathAndFile As String,
newFilePath As String,
maxBytes As Integer
) As ZippedFileInfo
public:
ZippedFileInfo^ IcsUnzipFirstDumpToFile(
String^ zipPathAndFile,
String^ newFilePath,
int maxBytes
)
member IcsUnzipFirstDumpToFile :
zipPathAndFile : string *
newFilePath : string *
maxBytes : int -> ZippedFileInfo 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
ZippedFileInfoPath, size and timestamp of the file in the archive
See also