1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-27 22:18:36 +02:00
Files
OpenIntegrations/docs/en/md/Dropbox/File-and-directory-management/Download-folder.mdx
Vitaly the Alpaca (bot) 408473f4ec Main build (Jenkins)
2025-06-29 14:35:33 +03:00

61 lines
2.3 KiB
Plaintext
Vendored

---
sidebar_position: 12
description: Download folder 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';
# Download folder
Downloads a zip archive with the contents of the specified directory
`Function DownloadFolder(Val Token, Val Path) Export`
| Parameter | CLI option | Type | Required | 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
<br/>
```bsl title="1C:Enterprise/OneScript code example"
Token = "sl.u.AF2u0jJrW_SK10XagkkZ5L5bjzw8sb7clArwDhHprOJEY18V8Kr4HcW7AhIzK5MkETtxhKDO-DH2snp5Bxh1QNmgYpz_YHnaagV_SeSZc6dM6rSXArOEUZThCX17OGrgluUy3Apne71bjQ4ocsT0n-gzikTxjec9JY_scMNDmBAPlbPE5K0bDI2eJvocbU9V6dfgpo7EkKipNS_F27gjOnE2O5gH1WkX_pLdNOlqVw6W9vraDnD7liZywj-3PETjlkxaZutUzb2mJ1wpioehZoq4ffEtWyeARYOtvfzkyMgFEd7OCLmdj2K42r9tvyZJA9IqOO7sxfCP1Q442DnUb7ZXL_UXorNdWvPrJsDWBhn7s0JIvyAOLQRP0cOeXwzj7QRa94PotVEhhL0CnaLwoM-ZjKSMRNDlweSVgu82gndjrunenbCVejmI3Z_oaYRYf-duwp1OqWLM59iPA_QEaHEpOZKLNHUkpf_BrYa1iEw4VRSRGU2-gUK8RvhZSjZnCsrSyLt7_A4oEdH6TQ8uSp02GDJ6uUAra5e4iFSN5IRdJBD0RHLTW2riiYcqdn893HfHyP7FQClYTxH9Am82AGVGxYc-OEvD6Ki-elVgRDMx64OOMULEdDmPl_FWrQqAgvWEKIO092iI4dTJveUXxS_OB2sMlY5Ps_vmkikOAPapkMThIJHgaQRMe1YF48Ih07zY3zab2GL0Q5PIEyoCLcW9fHP385F...";
Path = "/New";
Result = OPI_Dropbox.DownloadFolder(Token, Path);
```
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint dropbox DownloadFolder \
--token "***" \
--path "/New"
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint dropbox DownloadFolder ^
--token "***" ^
--path "/New"
```
</TabItem>
</Tabs>
```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…
```