ZipArchiverExtract(String, String, ExtractExistingFileAction, String) Method
Extracts the encrypted contents of the source zip archive to the specified diretory.
Namespace: DevCase.ThirdParty.DotNetZipAssembly: DevCase.net48.ThirdParty.DotNetZip (in DevCase.net48.ThirdParty.DotNetZip.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public string Extract(
string sourceFilePath,
string outputDirectoryPath,
ExtractExistingFileAction overwrite,
string password
)
Public Function Extract (
sourceFilePath As String,
outputDirectoryPath As String,
overwrite As ExtractExistingFileAction,
password As String
) As String
Dim instance As ZipArchiver
Dim sourceFilePath As String
Dim outputDirectoryPath As String
Dim overwrite As ExtractExistingFileAction
Dim password As String
Dim returnValue As String
returnValue = instance.Extract(sourceFilePath,
outputDirectoryPath, overwrite,
password)
public:
String^ Extract(
String^ sourceFilePath,
String^ outputDirectoryPath,
ExtractExistingFileAction overwrite,
String^ password
)
member Extract :
sourceFilePath : string *
outputDirectoryPath : string *
overwrite : ExtractExistingFileAction *
password : string -> string
No code example is currently available or this language may not be supported.
- sourceFilePath String
-
The source zip file.
- outputDirectoryPath String
-
The output directory path.
- overwrite ExtractExistingFileAction
-
A value that indicates whether to overwrite any existing file during the extraction.
- password String
-
The zip password.
String
The full path of the output directory.