1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/examples/FTP/GetFileData.txt

41 lines
1.0 KiB
Plaintext
Raw Normal View History

2025-10-21 11:36:43 +03:00
 Host = "172.33.0.10";
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
2025-08-06 19:06:49 +03:00
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
If UseProxy Then
2025-10-21 11:36:43 +03:00
ProxyType = "http"; // http, socks5, socks4
2025-08-06 19:06:49 +03:00
2025-10-21 11:36:43 +03:00
ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";
2025-08-06 19:06:49 +03:00
ProxySettings = OPI_FTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);
EndIf;
If FTPS Then
2025-09-01 14:51:24 +03:00
TLSSettings = OPI_FTP.GetTLSSettings(True);
2025-08-06 19:06:49 +03:00
EndIf;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
2025-10-18 23:59:34 +03:00
Path = "new_dir/pic_from_disk.png";
2025-08-06 19:06:49 +03:00
Result = OPI_FTP.GetFileData(Connection, Path);
Else
Result = Connection; // Error of connection
EndIf;