Password Property
A password for the zip archive.
Object Oriented Interface
public function getPassword(); public function setPassword($value);
Procedural Interface
ipworkszip_zip_get($res, 21 ); ipworkszip_zip_set($res, 21, $value );
Default Value
''
Remarks
This property specifies the case-sensitive password used to encrypt or decrypt the archive. If set to an empty string, no password is used.
In this release, streaming out of encrypted archives is not supported. When compressing, WriteToProgressEvent must be set to false if Password is set.
Example (Compressing an Archive)
ZipControl.ArchiveFile =
"c:\test.zip"
ZipControl.RecurseSubdirectories =
true
ZipControl.IncludeFiles(
"c:\foo\*"
)
ZipControl.Password =
"nsoftware"
ZipControl.Compress()
Data Type
String