filePassword (property)

This property specifies the case-sensitive password used to encrypt or decrypt the current file.

Syntax

- (NSString*)filePassword:(int)fileIndex;
- (void)setFilePassword:(int)fileIndex:(NSString*)newFilePassword;
public func filePassword(fileIndex: Int32) throws -> String
public func setFilePassword(fileIndex: Int32, newFilePassword: String) throws -> Void

Default Value

""

Remarks

This property specifies the case-sensitive password used to encrypt or decrypt the current file. If set to an empty string, no password is used.

For archives that have multiple files with the same password, you may use the Password property instead of the Password property of the Files collection. You may also use FilePasswordRequired property to see if a file requires a password after an archive has been scanned.

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()

The FileIndex parameter specifies the index of the item in the array. The size of the array is controlled by the FileCount property.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks ZIP 2020 iOS Edition - Version 20.0 [Build 8300]