Discuss this help topic in SecureBlackbox Forum

TElPGPWriter.PreserveFilePaths

TElPGPWriter     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Specifies whether to preserve full file names when saving the PGP file

Declaration

[C#]
    bool PreserveFilePaths;

[VB.NET]
    Property PreserveFilePaths As Boolean

[Pascal]
    property PreserveFilePaths: boolean;

[C++]
    bool get_PreserveFilePaths();
    void set_PreserveFilePaths(bool Value);

[PHP]
    bool get_PreserveFilePaths()
    void set_PreserveFilePaths(bool $Value)

[Java]
    boolean getPreserveFilePaths();
    void setPreserveFilePaths(boolean Value);

Description

    When PreserveFilePaths property is False, methods like EncryptFiles, SignFiles, EncryptAndSignFiles save only file names (without paths) to the PGP file.
    
When PreserveFilePaths property is True, the file names are saved exactly as they are passed to the above mentioned methods, including possible paths. This lets you put directory structures to the encrypted and/or signed PGP file.
    
The default value is False.

See also:     EncryptFiles     EncryptAndSignFiles     SignFiles    

Discuss this help topic in SecureBlackbox Forum