IPWorks OpenPGP 2020 iOS Edition

Questions / Feedback?

archiveFile (property)

The name of the self-decrypting archive to create.

Syntax

@property (nonatomic,readwrite,assign,getter=archiveFile,setter=setArchiveFile:) NSString* archiveFile;
- (NSString*)archiveFile;
- (void)setArchiveFile:(NSString*)newArchiveFile;
public var archiveFile: String {
  get {...}
set {...} }

Default Value

""

Remarks

This property specifies the name of the archive to be written when CreateSDA is called. Any pre-existing archive file will be overwritten.

The filename may be specified with or without a path. Paths may be relative or absolute, and should be specified in the format native to the host operating system. The filename should be specified with the appropriate ".exe" extension. An extension will not automatically be appended by the class.

If the file cannot be written a trappable error will be generated.

Example (Creating a Self-Decrypting Archive)


class.ArchiveFile = "c:\test.exe"
class.RecurseSubdirectories = true
class.SourceDirectory = "c:\foo\"
class.CaptionText = "Testing SDA"
class.BannerText = "Press continue to decompress the archive."
class.CreateSDA()

class.ArchiveFile = "c:\test.exe"
class.SourceFile = "c:\foo\bar.dat"
class.CaptionText = "Testing SDA"
class.BannerText = "Press continue to decompress the archive."
class.CreateSDA()

Note: When creating a self-decrypting archive which exceeds 4 GB or more of uncompressed data or which contains more than 64K files, the class will create a 64-bit archive.

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