2024-06-05 12:19:46 +02:00
|
|
|
---
|
|
|
|
sidebar_position: 4
|
|
|
|
---
|
|
|
|
|
|
|
|
# Upload file
|
|
|
|
Uploads a file to the drive
|
|
|
|
|
|
|
|
|
|
|
|
*Function UploadFile(Val Token, Val File, Val Description) ExportReturn FileManagement(Token, File, Description);EndFunction*
|
|
|
|
|
|
|
|
| Parameter | CLI option | Type | Destination |
|
|
|
|
|-|-|-|-|
|
|
|
|
| Token | --token | String | Token |
|
|
|
|
| File | --file | BinaryData,String | File to be uploaded |
|
2024-06-06 14:33:52 +02:00
|
|
|
| Description | --props | Map Of KeyAndValue | JSON description or path to .json |
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
|
2024-06-06 14:33:52 +02:00
|
|
|
Returns: Map Of KeyAndValue - serialized JSON response from Google
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```bsl title="Code example"
|
|
|
|
|
|
|
|
|
|
|
|
Description = New Map;
|
|
|
|
Description.Insert("MIME", "image/jpeg");
|
|
|
|
Description.Insert("Name", "New file.jpg");
|
|
|
|
Description.Insert("Description", "This is a new file");
|
|
|
|
Description.Insert("Parent", "root");
|
|
|
|
|
|
|
|
Image = "C:\OPI\image.jpg";
|
|
|
|
|
|
|
|
Response = OPI_GoogleDrive.UploadFile(Token, Image, Description); //Map
|
|
|
|
Response = OPI_Tools.JSONString(Response); //String
|
|
|
|
|
2024-06-05 12:35:05 +02:00
|
|
|
|
2024-06-05 12:19:46 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
```sh title="CLI command example"
|
|
|
|
|
|
|
|
oint gdrive UploadFile --token %token% --file %file% --props %props%
|
|
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
```json title="Result"
|
|
|
|
|
|
|
|
{
|
|
|
|
"mimeType": "image/jpeg",
|
|
|
|
"name": "New file.jpg",
|
|
|
|
"id": "16hPGNTMmbnXhz_g0vjGbrLP19h56RwIg",
|
|
|
|
"kind": "drive#file"
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|