Transferring files in an unencrypted data channel

Description

Use the ClearDataConnection property to specify whether the data channel should be encrypted or not when using FTP over SSL.

 

Syntax

long Object.ClearDataConnection

 

Parameters 

True

Your login is encrypted but data transfers are not. This is the default.

False

Your login and data transfers are encrypted.

 

Example

Set MySite = CreateObject("CuteFTPPro.TEConnection")

MySite.Protocol = "FTPS"

MySite.ClearDataConnection = false ‘encrypt FTP data channel

 

 

Notes