1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-27 00:51:06 +02:00
Files
OpenIntegrations/docs/en/md/Yandex_Disk/File-and-folder-management/Create-folder.md

64 lines
1.4 KiB
Markdown
Raw Normal View History

---
sidebar_position: 2
---
# Create folder
Creates a directory on the disk
2024-07-10 13:58:29 +03:00
`Function CreateFolder(Val Token, Val Path) Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Token |
| Path | --path | String | Path to the created folder |
Returns: Map Of KeyAndValue - serialized JSON response from Yandex
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-08-13 16:47:32 +03:00
Token = "y0_AgAAAABdylaOAAs0QgAAAAD5i-a...";
Path = "/" + String(New UUID);
Result = OPI_YandexDisk.CreateFolder(Token, Path);
```
```sh title="CLI command example"
oint yadisk CreateFolder --token "y0_AgAAAABdylaOAAs0QgAAAAD5i-a..." --path %path%
```
```json title="Result"
2024-08-14 09:06:31 +03:00
{
"revision": 1707461457546792,
"comment_ids": {
"public_resource": "1573541518:ba32b9efac79ab1b04707a4278a1ff583d7b0403ea306035f1b910e56c6ef3ac",
"private_resource": "1573541518:ba32b9efac79ab1b04707a4278a1ff583d7b0403ea306035f1b910e56c6ef3ac"
},
"path": "disk:/TestFolder",
"modified": "2024-02-09T06:50:57+00:00",
"created": "2024-02-09T06:50:57+00:00",
"resource_id": "1573541518:ba32b9efac79ab1b04707a4278a1ff583d7b0403ea306035f1b910e56c6ef3ac",
"type": "dir",
"name": "TestFolder",
"exif": {},
"_embedded": {
"total": 0,
"path": "disk:/TestFolder",
"limit": 20,
"offset": 0,
"items": [],
"sort": ""
}
}
```