List objects
Gets information about the contents of a directory at the specified path
- Parameters
- Advanced call ?
Function ListObjects(Val Connection, Val Path = "", Val Recursively = False) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Connection | --conn | Arbitrary | ✔ | Existing connection or connection configuration |
| Path | --path | String | ✖ | Path to search directory |
| Recursively | --rcv | Boolean | ✖ | Get information about objects in nested directories |
Returns
Map Of KeyAndValue - Processing result
| Parameter | Description |
|---|---|
| dontwait | Creates a background job and returns its data (for 1C and OneScript only) |
tip
FTP Command: LIST
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);
ElsIf AuthorizationType = "Keyboard interactive" Then
Login = "bayselonarrend";
Password = "12we...";
AnswersArray = New Array;
AnswersArray.Add(Password);
SFTPSettings = OPI_SFTP.GetSettingsKI(Host, Port, Login, AnswersArray);
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
Result = OPI_SFTP.ListObjects(Connection, "test_folder", True);
Else
Result = Connection; // Error of connection
EndIf;
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint sftp ListObjects \
--conn "{'proxy':{'login':'proxyuser','password':'***','port':'8071','proxy_type':'http','server':'127.0.0.1'},'set':{'auth_type':'keyboard_interactive','host':'172.33.0.34','key_path':null,'keyboard_responses':['12we3456!2154'],'passphrase':null,'password':null,'port':'2223','pub_path':null,'username':'bayselonarrend'}}" \
--path "files_folder" \
--rcv true
:: JSON data can also be passed as a path to a .json file
oint sftp ListObjects ^
--conn "{'proxy':{'login':'proxyuser','password':'***','port':'8071','proxy_type':'http','server':'127.0.0.1'},'set':{'auth_type':'keyboard_interactive','host':'172.33.0.34','key_path':null,'keyboard_responses':['12we3456!2154'],'passphrase':null,'password':null,'port':'2223','pub_path':null,'username':'bayselonarrend'}}" ^
--path "files_folder" ^
--rcv true
Result
{
"data": [
{
"accessed": 1779803110,
"extension": "",
"gid": 1000,
"is_directory": true,
"is_symlink": false,
"modified": 1773778601,
"name": "test_folder2",
"path": "test_folder/test_folder2",
"permissions": "40777",
"size": 4096,
"uid": 1000,
"objects": [
{
"accessed": 1773778601,
"extension": "txt",
"gid": 1000,
"is_directory": false,
"is_symlink": false,
"modified": 1773778601,
"name": "3.txt",
"path": "test_folder/test_folder2/3.txt",
"permissions": "100777",
"size": 0,
"uid": 1000
},
{
"accessed": 1779803110,
"extension": "",
"gid": 1000,
"is_directory": true,
"is_symlink": false,
"modified": 1773778601,
"name": "test_folder3",
"path": "test_folder/test_folder2/test_folder3",
"permissions": "40777",
"size": 4096,
"uid": 1000,
"objects": [
{
"accessed": 1773778601,
"extension": "txt",
"gid": 1000,
"is_directory": false,
"is_symlink": false,
"modified": 1773778601,
"name": "4.txt",
"path": "test_folder/test_folder2/test_folder3/4.txt",
"permissions": "100777",
"size": 0,
"uid": 1000
}
]
},
{
"accessed": 1779803110,
"extension": "",
"gid": 1000,
"is_directory": true,
"is_symlink": false,
"modified": 1773778601,
"name": "test_folder4",
"path": "test_folder/test_folder2/test_folder4",
"permissions": "40777",
"size": 4096,
"uid": 1000,
"objects": [
{
"accessed": 1773778601,
"extension": "txt",
"gid": 1000,
"is_directory": false,
"is_symlink": false,
"modified": 1773778601,
"name": "1.txt",
"path": "test_folder/test_folder2/test_folder4/1.txt",
"permissions": "100777",
"size": 0,
"uid": 1000
},
{
"accessed": 1773778601,
"extension": "txt",
"gid": 1000,
"is_directory": false,
"is_symlink": false,
"modified": 1773778601,
"name": "2.txt",
"path": "test_folder/test_folder2/test_folder4/2.txt",
"permissions": "100777",
"size": 0,
"uid": 1000
}
]
}
]
}
],
"result": true,
"close_connection": {
"result": true
}
}