Crisis.Ionic.Zip.ZipEntry.ExtractWithPassword C# (CSharp) Method

ExtractWithPassword() public method

Extract the entry to the filesystem, starting at the specified base directory, and using the specified behavior when extraction would overwrite an existing file.
See the remarks on the LastModified property, for some details about how the last modified time of the created file is set.
public ExtractWithPassword ( string baseDirectory, ExtractExistingFileAction extractExistingFile, string password ) : void
baseDirectory string the pathname of the base directory
extractExistingFile ExtractExistingFileAction The action to take if extraction would /// overwrite an existing file.
password string The Password to use for decrypting the entry.
return void
        public void ExtractWithPassword(string baseDirectory, ExtractExistingFileAction extractExistingFile, string password)
        {
            ExtractExistingFile = extractExistingFile;
            InternalExtract(baseDirectory, null, password);
        }

Same methods

ZipEntry::ExtractWithPassword ( ExtractExistingFileAction extractExistingFile, string password ) : void
ZipEntry::ExtractWithPassword ( Stream stream, string password ) : void
ZipEntry::ExtractWithPassword ( string password ) : void
ZipEntry::ExtractWithPassword ( string baseDirectory, string password ) : void
ZipEntry