Skip to main content

Change current directory

Changes the current directory from which relative paths are calculated

Function ChangeCurrentDirectory(Val Connection, Val Path) Export

ParameterCLI optionTypeRequiredDescription
Connection-ArbitraryExisting connection or connection configuration
Path-StringPath to new directory

Returns: Map Of KeyAndValue - Processing result


tip

FTP Command: CWD

caution

NOCLI: this method is not available in CLI version


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
Path = "new_dir";
Result = OPI_FTP.ChangeCurrentDirectory(Connection, Path);
Else
Result = Connection; // Error of connection
EndIf;
Result
{
"result": true
}