1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00

Main build (Jenkins)

This commit is contained in:
Vitaly the Alpaca (bot)
2025-10-18 23:59:34 +03:00
parent 3ef5b30d9b
commit 85a1e276be
1607 changed files with 12182 additions and 12182 deletions

View File

@@ -32,7 +32,7 @@
If OPI_FTP.IsConnector(Connection) Then
Path = "new_dir/big.bin";
Path = "new_dir/pic_from_disk.png";
Result = OPI_FTP.GetFileData(Connection, Path);
Else

View File

@@ -31,7 +31,7 @@
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.GetObjectSize(Connection, "new_dir/big.bin");
Result = OPI_FTP.GetObjectSize(Connection, "new_dir/pic_from_disk.png");
Else
Result = Connection; // Error of connection
EndIf;

View File

@@ -32,7 +32,7 @@
If OPI_FTP.IsConnector(Connection) Then
Path = "new_dir/big.bin";
Path = "new_dir/pic_from_disk.png";
FileName = GetTempFileName("bin");
Result = OPI_FTP.SaveFile(Connection, Path, FileName);

View File

@@ -31,7 +31,7 @@
Connection = OPI_FTP.CreateConnection(FTPSettings, ProxySettings, TLSSettings);
If OPI_FTP.IsConnector(Connection) Then
Result = OPI_FTP.UpdatePath(Connection, "new_dir/big.bin", "new_dir/giant.bin");
Result = OPI_FTP.UpdatePath(Connection, "new_dir/pic_from_disk.png", "new_dir/pic_copy.png");
Else
Result = Connection; // Error of connection
EndIf;