You've already forked OpenIntegrations
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:
2
docs/en/examples/FTP/GetFileData.txt
vendored
2
docs/en/examples/FTP/GetFileData.txt
vendored
@@ -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
|
||||
|
||||
2
docs/en/examples/FTP/GetObjectSize.txt
vendored
2
docs/en/examples/FTP/GetObjectSize.txt
vendored
@@ -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;
|
||||
|
||||
2
docs/en/examples/FTP/SaveFile.txt
vendored
2
docs/en/examples/FTP/SaveFile.txt
vendored
@@ -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);
|
||||
|
||||
2
docs/en/examples/FTP/UpdatePath.txt
vendored
2
docs/en/examples/FTP/UpdatePath.txt
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user