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

45 lines
1.2 KiB
Plaintext
Raw Normal View History

2025-07-28 20:20:57 +03:00
 ImagePath = "C:\pic.png";
ImageDD = New BinaryData(Image);
2025-07-30 08:17:11 +03:00
Host = "172.33.0.10";
2025-07-28 20:20:57 +03:00
Port = "21";
Login = "bayselonarrend";
Password = "12we...";
UseProxy = True;
FTPS = True;
ProxySettings = Undefined;
TLSSettings = Undefined; // FTPS
2025-07-30 08:17:11 +03:00
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password, , 1000, 1000);
2025-07-28 20:20:57 +03:00
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;
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.UploadFile(Connection, Image, "new_dir/pic_from_disk.png");
Result2 = OPI_FTP.UploadFile(Connection, ImageDD, "pic_from_binary.png");
Else
Result = Connection; // Error of connection
EndIf;