2025-10-20 19:41:52 +03:00
|
|
|
Host = FunctionParameters["FTP_IP"];
|
|
|
|
|
Port = FunctionParameters["FTP_Port"];
|
|
|
|
|
Login = FunctionParameters["FTP_User"];
|
|
|
|
|
Password = FunctionParameters["FTP_Password"];
|
2025-09-10 14:54:07 +03:00
|
|
|
|
|
|
|
|
UseProxy = True;
|
|
|
|
|
FTPS = True;
|
|
|
|
|
|
|
|
|
|
ProxySettings = Undefined;
|
|
|
|
|
TLSSettings = Undefined; // FTPS
|
|
|
|
|
|
|
|
|
|
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
|
|
|
|
|
|
|
|
|
|
If UseProxy Then
|
|
|
|
|
|
2025-10-20 19:41:52 +03:00
|
|
|
ProxyType = FunctionParameters["Proxy_Type"]; // http, socks5, socks4
|
2025-09-10 14:54:07 +03:00
|
|
|
|
2025-10-20 19:41:52 +03:00
|
|
|
ProxyAddress = FunctionParameters["Proxy_IP"];
|
|
|
|
|
ProxyPort = FunctionParameters["Proxy_Port"];
|
|
|
|
|
ProxyLogin = FunctionParameters["Proxy_User"];
|
|
|
|
|
ProxyPassword = FunctionParameters["Proxy_Password"];
|
2025-09-10 14:54:07 +03:00
|
|
|
|
|
|
|
|
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
|
|
|
|
|
|
|
|
|
|
EndIf;
|
|
|
|
|
|
|
|
|
|
If FTPS Then
|
|
|
|
|
TLSSettings = OPI_FTP.GetTLSSettings(True);
|
|
|
|
|
EndIf;
|
|
|
|
|
|
|
|
|
|
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
|
|
|
|
|
|
|
|
|
|
If OPI_FTP.IsConnector(Connection) Then
|
|
|
|
|
|
|
|
|
|
CommandText = "PWD";
|
|
|
|
|
Result = OPI_FTP.ExecuteArbitraryCommand(Connection, CommandText);
|
|
|
|
|
|
|
|
|
|
Else
|
|
|
|
|
Result = Connection; // Error of connection
|
|
|
|
|
EndIf;
|