1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-12-03 22:39:12 +02:00
Files
OpenIntegrations/docs/en/md/Dropbox/File-and-directory-management/Download-folder.md

38 lines
922 B
Markdown
Raw Normal View History

---
sidebar_position: 12
---
# Download folder
Downloads a zip archive with the contents of the specified directory
2024-07-10 13:58:29 +03:00
`Function DownloadFolder(Val Token, Val Path) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Token |
| Path | --path | String | Path or ID of the directory |
Returns: BinaryData - binary data of the zip archive with the contents of the directory
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-10-15 09:53:37 +03:00
Token = "sl.B-iqyqXWh8YCVSZnVG0BwXxLlHNbfCDJrGlOyhjKnx1cAwPeSV71gjqQ1iR0QLna032Hn-HZjE...";
2024-08-13 16:47:32 +03:00
Path = "/New";
Result = OPI_Dropbox.DownloadFolder(Token, Path);
```
2024-10-15 09:53:37 +03:00
```json title="Result"
2024-10-09 09:42:00 +03:00
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…
```