1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-29 22:27:42 +02:00
Files
OpenIntegrations/docs/en/md/FTP/Common-methods/Get-protocol-feature-list.mdx
Vitaly the Alpaca (bot) 87b272e58b Main build (Jenkins)
2025-09-12 20:23:31 +03:00

93 lines
2.1 KiB
Plaintext
Vendored

---
sidebar_position: 5
description: Get protocol feature list 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';
# Get protocol feature list
Gets a list of FTP protocol features supported by the server
`Function GetProtocolFeatureList(Val Connection) Export`
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Connection | --conn | Arbitrary | ✔ | Existing connection or connection configuration |
Returns: Map Of KeyAndValue - Processing result
<br/>
:::tip
FTP Command: `FEAT`
:::
<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.GetProtocolFeatureList(Connection);
Else
Result = Connection; // Error of connection
EndIf;
```
```json title="Result"
{
"data": {
"EPRT": null,
"EPSV": null,
"MDTM": null,
"PASV": null,
"PBSZ": null,
"PROT": null,
"REST": "STREAM",
"SIZE": null,
"TVFS": null,
"UTF8": null
},
"result": true
}
```