Interface IArchiveOptions

interface IArchiveOptions {
    compressionLevel?:
        | 0
        | 1
        | 3
        | 5
        | 7
        | 9;
    notRecurseSubdirectories?: boolean;
    overwriteFile?: boolean;
    parameters?: Dict<string>;
    password?: string;
    trace?: boolean;
}

Hierarchy

  • ITraceableOptions
    • IArchiveOptions

Properties

compressionLevel?:
    | 0
    | 1
    | 3
    | 5
    | 7
    | 9

Sets level of compression. Default: 5

notRecurseSubdirectories?: boolean
overwriteFile?: boolean
parameters?: Dict<string>
password?: string
trace?: boolean

Warning: Enabling this option in production is not recommended. Sensitive information may be output, use at your own risk!!!