1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-04-21 12:17:20 +02:00

59 lines
1.4 KiB
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 12
---
2024-10-15 10:50:56 +03:00
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
2024-10-15 10:16:04 +03:00
# Download folder
Downloads a zip archive with the contents of the specified directory
`Function DownloadFolder(Val Token, Val Path) Export`
2024-10-15 15:15:47 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| Path | --path | String | ✔ | Path or ID of the directory |
2024-10-15 10:16:04 +03:00
Returns: BinaryData - binary data of the zip archive with the contents of the directory
<br/>
2024-10-15 21:15:56 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2024-11-03 11:09:51 +03:00
Token = "sl.B_9DRTAH1uWCLSq9M5T8rTk4TKmvQF-_-cxV3mM1ey7H-zkB45kLarH36ghBdEVWt5XH3ItaS0...";
2024-10-15 10:16:04 +03:00
Path = "/New";
Result = OPI_Dropbox.DownloadFolder(Token, Path);
```
2024-10-20 22:36:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox DownloadFolder \
2024-10-22 08:59:24 +03:00
--token "***" \
--path "/New"
2024-10-20 22:36:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox DownloadFolder ^
2024-10-22 08:59:24 +03:00
--token "***" ^
--path "/New"
2024-10-20 22:36:03 +03:00
```
</TabItem>
</Tabs>
2024-10-15 10:16:04 +03:00
```json title="Result"
NOT JSON: 50 4B 03 04 14 00 00 08 00 00 78 94 48 59 00 00 00 00 00 00 00 00 00 00 00 00 04 00 09 00 4E 65 77 2F 55 54 05 00 01 84 7B 05 67 50 4B 03 04 14 00 08 08 00 00 4F 87 AF 58 00 00 00 00 00 00 00…
```