--- sidebar_position: 6 description: Download file and other functions to work with Google Drive 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, Google Drive] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Download file Gets file by ID `Function DownloadFile(Val Token, Val Identifier, Val SavePath = "") Export` | Parameter | CLI option | Type | Required | 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
```bsl title="1C:Enterprise/OneScript code example" Token = "ya29.a0ATi6K2tVhkOEu91I_FKDEZ7_olNcPRKrwKbGh7GiFIzwDZjaTNm46ErGj-Lju2am1aAUurgQyVnv0f3G4L7keHSXYNhuCPGvTvzjRdPQJNz_0LzKWjviK54u4..."; Identifier = "1vuDUwLA8D2NBmWO3jxpcg8kRpUEa3TJ_"; Result = OPI_GoogleDrive.DownloadFile(Token, Identifier); ``` ```bash oint gdrive DownloadFile \ --token "***" \ --object "1-1pznXNxxMJr-egr1FfrDd3-M9pI6YpG" ``` ```batch oint gdrive DownloadFile ^ --token "***" ^ --object "1-1pznXNxxMJr-egr1FfrDd3-M9pI6YpG" ``` ```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… ```