Discuss this help topic in SecureBlackbox Forum

TElSimpleSFTPClient.UseTruncateFlagOnUpload

TElSimpleSFTPClient     See also     


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


Specifies whether to use the 'truncate' flag on file upload.

Declaration

[C#]
    bool UseTruncateFlagOnUpload;

[VB.NET]
    Property UseTruncateFlagOnUpload As Boolean

[Pascal]
    property UseTruncateFlagOnUpload : boolean;

[C++]
    bool get_UseTruncateFlagOnUpload();
    void set_UseTruncateFlagOnUpload(bool Value);

[PHP]
    bool get_UseTruncateFlagOnUpload()
    void set_UseTruncateFlagOnUpload(bool $Value)

[Java]
    boolean getUseTruncateFlagOnUpload();
    void setUseTruncateFlagOnUpload(boolean Value);

Description

    If this property is True, existing files are opened truncated on upload, otherwise a new file is created. The default value is True.
    This property corresponds to fmTruncate mode defined by TSBSftpFileOpenMode.

See also:     TSBSftpFileOpenMode     UploadFile    

Discuss this help topic in SecureBlackbox Forum