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

44 lines
964 B
Markdown
Raw Normal View History

---
sidebar_position: 6
---
# Download file
Gets file by ID
2024-07-10 13:58:29 +03:00
`Function DownloadFile(Val Token, Val Identifier, Val SavePath = "") Export`
| Parameter | CLI option | Type | Description |
|-|-|-|-|
| Token | --token | String | Token |
| Identifier | --object | String | File identifier |
| SavePath | --out | String | File save path |
Returns: BinaryData,String - Binary data or file path when SavePath parameter is specified
2024-07-10 14:05:58 +03:00
<br/>
2024-07-10 13:58:29 +03:00
```bsl title="Code example"
2024-09-29 17:35:23 +03:00
Token = "ya29.a0AcM612wLdbBK14FR2SE0d3WHabYb8Xtppm0oKCcbVrecgsA-a5DfsgZ29stOw4hu84F_IpHbKTJocsm1WpjLQPBT5MJ6p8D7H1PKa_iT0...";
Identifier = "1RijXw14hyQN_59ZOzJ9f35ezzU_qd114";
2024-09-28 19:38:00 +03:00
Result = OPI_GoogleDrive.DownloadFile(Token, Identifier);
```
```sh title="CLI command example"
oint gdrive DownloadFile --token %token% --object "1dg_MwwwPSPYT0p3y-8dvGWoapbwaaaaa" --out %out%
```
```json title="Result"
2024-09-29 17:27:25 +03:00
```