Create Connection
Creates an FTP connection with the specified settings
Function CreateConnection(Val FTPSettings, Val Proxy = Undefined, Val Tls = Undefined) Export
| Parameter | CLI option | Type | Required | Description | 
|---|---|---|---|---|
| FTPSettings | - | Structure Of KeyAndValue | ✔ | FTP settings. See GetConnectionSettings | 
| Proxy | - | Structure Of KeyAndValue | ✖ | Proxy settings, if required. See GetProxySettings | 
| Tls | - | Structure Of KeyAndValue | ✖ | TLS settings, if necessary. See GetTlsSettings | 
Returns: Arbitrary - Client object or map with error information
caution
NOCLI: this method is not available in CLI version
1C:Enterprise/OneScript code example
    Host     = "172.33.0.10";
    Port     = "21";
    Login    = "bayselonarrend";
    Password = "12we...";
    UseProxy = True;
    FTPS     = True;
    ProxySettings = Undefined;
    TLSSettings   = Undefined; // FTPS
    FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
    If UseProxy Then
        ProxyType = "http"; // http, socks5, socks4
        ProxyAddress  = "127.0.0.1";
        ProxyPort     = "8071";
        ProxyLogin    = "proxyuser";
        ProxyPassword = "12we...";
        ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
    EndIf;
    If FTPS Then
        TLSSettings = OPI_FTP.GetTLSSettings(True);
    EndIf;
    Result = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
Result
"AddIn.OPI_FTP.Main"