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

ExtractWithPassword() public method

Extract the entry to the filesystem, using the current working directory and the specified password.

Existing entries in the filesystem will not be overwritten. If you would like to force the overwrite of existing files, see the property, or call .

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 password ) : void
password string The Password to use for decrypting the entry.
return void
        public void ExtractWithPassword(string password)
        {
            InternalExtract(".", null, password);
        }

Same methods

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