1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-06-08 23:56:33 +02:00

60 lines
1.5 KiB
Plaintext
Raw Normal View History

2024-10-15 10:50:56 +03:00
---
2024-10-15 10:16:04 +03:00
sidebar_position: 7
---
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 file
Downloads a file at the specified path
`Function DownloadFile(Val Token, Val Path, Val SavePath = "") Export`
2024-10-15 15:15:47 +03:00
| Parameter | CLI option | Type | Required | Description |
|-|-|-|-|-|
| Token | --token | String | ✔ | Token |
| Path | --path | String | ✔ | Path to the file for downloading |
| SavePath | --out | String | ✖ | File save path |
2024-10-15 10:16:04 +03:00
Returns: BinaryData,String - Binary data or file path when SavePath parameter is specified
<br/>
2024-10-15 21:15:56 +03:00
```bsl title="1C:Enterprise/OneScript code example"
2024-10-15 10:16:04 +03:00
Token = "y0_AgAAAABdylaOAAs0QgAAAAD5i-a...";
2024-12-24 20:21:21 +03:00
Path = "/8de5e3cb-9172-47f7-a23a-f69b7b7ed91b.png";
2024-10-15 10:16:04 +03:00
Result = OPI_YandexDisk.DownloadFile(Token, Path);
```
2024-10-20 22:36:03 +03:00
<Tabs>
<TabItem value="bash" label="Bash" default>
```bash
oint yadisk DownloadFile \
2024-10-22 08:59:24 +03:00
--token "***" \
2024-12-25 11:43:34 +03:00
--path "/e3e05a5d-1f4c-427f-8ba8-74d46720091e.png"
2024-10-20 22:36:03 +03:00
```
</TabItem>
<TabItem value="bat" label="CMD/Bat" default>
```batch
oint yadisk DownloadFile ^
2024-10-22 08:59:24 +03:00
--token "***" ^
2024-12-25 11:43:34 +03:00
--path "/e3e05a5d-1f4c-427f-8ba8-74d46720091e.png"
2024-10-20 22:36:03 +03:00
```
</TabItem>
</Tabs>
2024-10-15 10:16:04 +03:00
```json title="Result"
NOT JSON: FF D8 FF E1 54 C1 45 78 69 66 00 00 49 49 2A 00 08 00 00 00 0B 00 0E 01 02 00 20 00 00 00 92 00 00 00 0F 01 02 00 05 00 00 00 B2 00 00 00 10 01 02 00 07 00 00 00 B8 00 00 00 12 01 03 00 01 00…
```