IPWorks OpenPGP 2020 .NET Edition

Questions / Feedback?

ArchiveFile Property

The name of the self-decrypting archive to create.

Syntax

public string ArchiveFile { get; set; }
Public Property ArchiveFile As String

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 component.

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

Example (Creating a Self-Decrypting Archive)


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

component.ArchiveFile = "c:\test.exe"
component.SourceFile = "c:\foo\bar.dat"
component.CaptionText = "Testing SDA"
component.BannerText = "Press continue to decompress the archive."
component.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 component will create a 64-bit archive.

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