You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-11-29 22:27:42 +02:00
68 lines
2.3 KiB
Plaintext
Vendored
68 lines
2.3 KiB
Plaintext
Vendored
---
|
|
sidebar_position: 10
|
|
description: Create 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';
|
|
|
|
# Create folder
|
|
Creates an empty directory at the selected path
|
|
|
|
|
|
|
|
`Function CreateFolder(Val Token, Val Path) Export`
|
|
|
|
| Parameter | CLI option | Type | Required | Description |
|
|
|-|-|-|-|-|
|
|
| Token | --token | String | ✔ | Token |
|
|
| Path | --path | String | ✔ | Target path for creating the directory |
|
|
|
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Dropbox
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
|
|
```bsl title="1C:Enterprise/OneScript code example"
|
|
Token = "sl.u.AF3fk8uaUIwyiB3IhohzMTX4f5H7HG-_HUxE57pCr9T1UX-sqQL4Cl8uV4f7Phx7A7iaqkdKjMCJWM4XzxN41DYVTEFn5qv5PytkFWQsrZWHrwKG6-wXV70eICUBO3Ww9X3NBAN3M4kQXLXLiIs78NBoDFG1Z0GEldYhS5s0HBf7RJfODS0JKgD7pc3hK4Z3i6heVLhKta0_MZKMm5Of0Le6aTpifbUWJZdrFD-oVjFuhSo6z4vU0dijMNSWFudCQB55VBnepu3BMowVbSOfR3tSdAoQT_B53XzyWcxnZcZxVVYtk7Bev-OHMp_6rmDkhpy1OSsACL26TRxXCwYH5I8iwPROr_cvUIEQ5QQ29e_HevWBwi0IguzKvu7NaJZHT65U6hp7K8Pv55uuWLbqBGpvO-Go4kHiRou1swS7DrhaJIBmmnB_D8dKtvGHd3SWRjPic2ywWAWd_I2gu24bkX-ZsxAfG3wqiWyHQIvKpdFf6C3o9Ib80N_-LKlfPxXf_34Qs56LfDmxd5g7wpR0H3xbXQspaZuoqomzOtjlPMIAXjM8s0PxpCZQmglLEyfQwr_Xl2P3d1Qr6iplkchejeEhWhRvKZpmr3SRJh_DdtHyj4jaiugSjVFmEDF0OBHJ9C8NGgwGXLflRJ9hl_ldOjyUbncFiWMhOM31AOvfl7G7i1zxci3w6aPpRMAvgyIVZBhTW0l6y14sGCq_yodvX34XXLX2rH8...";
|
|
Path = "/New catalog";
|
|
|
|
Result = OPI_Dropbox.CreateFolder(Token, Path);
|
|
```
|
|
|
|
|
|
<Tabs>
|
|
|
|
<TabItem value="bash" label="Bash" default>
|
|
```bash
|
|
oint dropbox CreateFolder \
|
|
--token "***" \
|
|
--path "/New catalog"
|
|
```
|
|
</TabItem>
|
|
|
|
<TabItem value="bat" label="CMD/Bat" default>
|
|
```batch
|
|
oint dropbox CreateFolder ^
|
|
--token "***" ^
|
|
--path "/New catalog"
|
|
```
|
|
</TabItem>
|
|
</Tabs>
|
|
|
|
|
|
```json title="Result"
|
|
{
|
|
"metadata": {
|
|
"name": "New catalog",
|
|
"path_lower": "/new catalog",
|
|
"path_display": "/New catalog",
|
|
"id": "id:kJU6-a-pT48AAAAAAAAclw"
|
|
}
|
|
}
|
|
```
|