You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-27 22:18:36 +02:00
79 lines
2.1 KiB
Plaintext
79 lines
2.1 KiB
Plaintext
|
|
---
|
||
|
|
sidebar_position: 6
|
||
|
|
description: Rename object and other functions to work with FTP in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI
|
||
|
|
keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, FTP]
|
||
|
|
---
|
||
|
|
|
||
|
|
import Tabs from '@theme/Tabs';
|
||
|
|
import TabItem from '@theme/TabItem';
|
||
|
|
|
||
|
|
# Rename object
|
||
|
|
Changes the object's path to the specified one
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
`Function RenameObject(Val Connection, Val Path, Val NewPath) Export`
|
||
|
|
|
||
|
|
| Parameter | CLI option | Type | Required | Description |
|
||
|
|
|-|-|-|-|-|
|
||
|
|
| Connection | --conn | Arbitrary | ✔ | Existing connection or connection configuration |
|
||
|
|
| Path | --old | String | ✔ | Current path to object |
|
||
|
|
| NewPath | --new | String | ✔ | New path to object |
|
||
|
|
|
||
|
|
|
||
|
|
Returns: Map Of KeyAndValue - Processing result
|
||
|
|
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
:::tip
|
||
|
|
The ability to move an object from one directory to another using renaming depends on the server settings
|
||
|
|
:::
|
||
|
|
<br/>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
||
|
|
Host = "172.33.0.10";
|
||
|
|
Port = "21";
|
||
|
|
Login = "bayselonarrend";
|
||
|
|
Password = "12we...";
|
||
|
|
|
||
|
|
UseProxy = True;
|
||
|
|
FTPS = True;
|
||
|
|
|
||
|
|
ProxySettings = Undefined;
|
||
|
|
TLSSettings = Undefined; // FTPS
|
||
|
|
|
||
|
|
FTPSettings = OPI_FTP.GetConnectionSettings(Host, Port, Login, Password);
|
||
|
|
|
||
|
|
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.RenameObject(Connection, "new_dir/big.bin", "new_dir/giant.bin");
|
||
|
|
Else
|
||
|
|
Result = Connection; // Error of connection
|
||
|
|
EndIf;
|
||
|
|
```
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|