You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-25 22:12:29 +02:00
212 lines
7.5 KiB
Plaintext
Vendored
212 lines
7.5 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 2
|
|
description: Get list of folder files and other functions to work with Dropbox 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, Dropbox]
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
|
|
# Get list of folder files
|
|
Gets the list of the first files in the directory or continues getting the next ones when the cursor is specified
|
|
|
|
|
|
|
|
`Function GetListOfFolderFiles(Val Token, Val Path = "", Val Detailed = False, Val Cursor = "") Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Token | --token | String | ✔ | Token |
|
|
| Path | --path | String | ✖ | Path to the directory. Optional if the cursor is specified |
|
|
| Detailed | --detail | Boolean | ✖ | Add information fields for mediafiles |
|
|
| Cursor | --cursor | String | ✖ | Cursor from the previous request to get the next set of files |
|
|
|
|
|
|
Returns: HTTPResponse - Get list of folder files
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Path = "/New";
|
|
Token = "sl.u.AGD50XKO7wtrVrk6Jj8bLInZ4qU1xI-4iki5x1AaK0BbetjfvOgXAPvCGOg1SX0TPjL-vdL1lrBzf6Bv_QqtVoUIyTIpEoQQA0VeSWGiwkkJIpAZB4XW2ZM6Mxy0T2f7LlQVWVDvIPTgWuxfnjxBDEE8Aj6BXgp18lcpXi-b13OKnhmSa_JIir2mS2m-02rxHgHCGvba2ohmM4nXwVgpK8ycm9PaSnD6K0UNqj_Mt5j-iW1JrT8Q72_ybsfk-UHbavtz80wmZ4td3A_3Gyqf9bHU1D-QyJ7gMobqr41Egk3OtiqkVs5NVbmG7l0a-ekLK2DCZOeIu_qgBtcFe2nzb2dM34prMeIgSJVB2mkIndyn9jo4ox4USxB8eFK3oxld0iK1ZiPhEKw9lcd0YYJt0R4DAKxJjGPW9WBTpBAjVralqcNAx-WMDhKR7hRwjRIO3pGtUnGxOjmdWtqstRZhjrmj3laFHZkQVNWVx4nI4hv5SvXgqkNhCD7PFI9SZppme8h1K-NuV1JMbPlAs3EPLMFaZE7oRZsIe73HidQkzV_c_z7--MMkrYliSE4MUq8lzybgEX8l_VznO6uH6v1NEY_5vCoYQZL2Ecc09E8mWWoQJCDrXhgApXu0EPvuQ26OpFmrgd1USEb-Y_IVN548uuZsbuRwYQP6KWgOby3SGOU6cfVEkx1WNW2Uhg8-hBhzSxq9UV0CQ5Rh2WK0nrf7dYM-Kk2UJIF...";
|
|
|
|
Result = OPI_Dropbox.GetListOfFolderFiles(Token, Path, True);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint dropbox GetListOfFolderFiles \
|
|
--token "***" \
|
|
--path "/New" \
|
|
--detail true
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint dropbox GetListOfFolderFiles ^
|
|
--token "***" ^
|
|
--path "/New" ^
|
|
--detail true
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"entries": [
|
|
{
|
|
".tag": "file",
|
|
"name": "Dogs.mp3",
|
|
"path_lower": "/new/dogs.mp3",
|
|
"path_display": "/New/Dogs.mp3",
|
|
"id": "id:kJU6-a-pT48AAAAAAAAACA",
|
|
"client_modified": "2024-05-15T16:58:30Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c3334bd841553",
|
|
"size": 9229352,
|
|
"is_downloadable": true,
|
|
"content_hash": "376f728ef041d9cef08406f16debc12de89d83130e69c66a817fd834d2d82dc2"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (1).docx",
|
|
"path_lower": "/new/url_doc (1).docx",
|
|
"path_display": "/New/url_doc (1).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAAALvg",
|
|
"client_modified": "2024-07-15T17:40:28Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c3335bd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (2).docx",
|
|
"path_lower": "/new/url_doc (2).docx",
|
|
"path_display": "/New/url_doc (2).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAAA24g",
|
|
"client_modified": "2025-02-05T10:19:29Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c3336bd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (3).docx",
|
|
"path_lower": "/new/url_doc (3).docx",
|
|
"path_display": "/New/url_doc (3).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAABDNA",
|
|
"client_modified": "2025-05-04T21:27:07Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c3337bd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (4).docx",
|
|
"path_lower": "/new/url_doc (4).docx",
|
|
"path_display": "/New/url_doc (4).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAABJpA",
|
|
"client_modified": "2025-07-01T17:39:19Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c3338bd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (5).docx",
|
|
"path_lower": "/new/url_doc (5).docx",
|
|
"path_display": "/New/url_doc (5).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAABSFA",
|
|
"client_modified": "2025-08-17T10:03:28Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c3339bd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (6).docx",
|
|
"path_lower": "/new/url_doc (6).docx",
|
|
"path_display": "/New/url_doc (6).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAABSTA",
|
|
"client_modified": "2025-08-31T15:14:04Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c333abd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (7).docx",
|
|
"path_lower": "/new/url_doc (7).docx",
|
|
"path_display": "/New/url_doc (7).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAABSaA",
|
|
"client_modified": "2025-08-31T16:29:58Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c333bbd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (8).docx",
|
|
"path_lower": "/new/url_doc (8).docx",
|
|
"path_display": "/New/url_doc (8).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAABShA",
|
|
"client_modified": "2025-08-31T20:43:05Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c333cbd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "url_doc (9).docx",
|
|
"path_lower": "/new/url_doc (9).docx",
|
|
"path_display": "/New/url_doc (9).docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAABUqg",
|
|
"client_modified": "2025-09-08T13:28:43Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c333dbd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
},
|
|
{
|
|
".tag": "file",
|
|
"name": "mydoc.docx",
|
|
"path_lower": "/new/mydoc.docx",
|
|
"path_display": "/New/mydoc.docx",
|
|
"id": "id:kJU6-a-pT48AAAAAAAAABw",
|
|
"client_modified": "2024-05-14T16:49:41Z",
|
|
"server_modified": "2025-10-15T09:47:21Z",
|
|
"rev": "6412f630c333ebd841553",
|
|
"size": 24069,
|
|
"is_downloadable": true,
|
|
"content_hash": "8d63c5989ceec1a90f3fde2ffaa76efcd2c050191e6b55a1761e4e352590bd8c"
|
|
}
|
|
],
|
|
"cursor": "AATP9XEUfwfsxf_90a2JTqUo2cr9SWVw9UUjUHgtkDklpicXn7S4P3pXGL4ovCV4yYLTQSfiWYbf60AptOY7Nhy3fcYZ4-JZFCSIAGbLRtdskxA8Gy7SAXZkIVEAI4Veuqoyg1hJQDUWylq-pNBQ4ESxMhob7DP1OYbn_JR9fIE95yhDWF8kuyGW20uKSafasi-f8eJWu8Zdb3ywWygUH4sM",
|
|
"has_more": false
|
|
}
|
|
```
|