Skip to main content

Get file data

Gets file from server as binary data

Function GetFileData(Val Connection, Val Path) Export

ParameterCLI optionTypeRequiredDescription
Connection-ArbitraryExisting connection or connection configuration
Path-StringPath to file on server

Returns: Map Of KeyAndValue, BinaryData - File data or error information


caution

NOCLI: this method is not available in CLI version


1C:Enterprise/OneScript code example
    Host = "172.33.0.13";
Port = "2222";

UseProxy = True;
ProxySettings = Undefined;
AuthorizationType = "By login and password";

If AuthorizationType = "By login and password" Then

Login = "bayselonarrend";
Password = "12we...";

SFTPSettings = OPI_SFTP.GetSettingsLoginPassword(Host, Port, Login, Password);

ElsIf AuthorizationType = "By key" Then

Login = "bayselonarrend";
PrivateKey = "./ssh_key";
PublicKey = "./ssh_key.pub";

SFTPSettings = OPI_SFTP.GetSettingsPrivateKey(Host, Port, Login, PrivateKey, PublicKey);

Else

Login = "bayselonarrend";
SFTPSettings = OPI_SFTP.GetSettingsViaAgent(Host, Port, Login);

EndIf;

If UseProxy Then

ProxyType = "http"; // http, socks5, socks4

ProxyAddress = "127.0.0.1";
ProxyPort = "8071";
ProxyLogin = "proxyuser";
ProxyPassword = "12we...";

ProxySettings = OPI_SFTP.GetProxySettings(ProxyAddress, ProxyPort, ProxyType, ProxyLogin, ProxyPassword);

EndIf;

Connection = OPI_SFTP.CreateConnection(SFTPSettings, ProxySettings);

If OPI_SFTP.IsConnector(Connection) Then

Path = "pic_from_disk.png";
Result = OPI_SFTP.GetFileData(Connection, Path);

Else
Result = Connection; // Error of connection
EndIf;
Result
NOT JSON: FF D8 FF E1 54 C1 45 78 69 66 00 00 49 49 2A 00 08 00 00 00 0B 00 0E 01 02 00 20 00 00 00 92 00 00 00 0F 01 02 00 05 00 00 00 B2 00 00 00 10 01 02 00 07 00 00 00 B8 00 00 00 12 01 03 00 01 00