Upload file
Uploads a file to the drive
Function UploadFile(Val Token, Val File, Val Description) Export
| Parameter | CLI option | Type | Required | Description |
|---|---|---|---|---|
| Token | --token | String | ✔ | Token |
| File | --file | BinaryData,String | ✔ | File to be uploaded |
| Description | --props | Map Of KeyAndValue | ✔ | See GetFileDescription |
Returns: Map Of KeyAndValue - serialized JSON response from Google
tip
Parameters with Binary data type can also accept file paths on disk and URLs
1C:Enterprise/OneScript code example
Token = "ya29.a0AQQ_BDQ_0g6De1s1jLOYbrGQ43QDri_VRPre92E-_aUXJNk52_zY1j3A74665Q7FVMzsgnjqjKN14ljBwB0PlswTyjZlgxcBIDMnuqIbFLhH8Hcxc5NfKIOpS...";
Image = "https://hut.openintegrations.dev/test_data/picture.jpg";
Directory = "11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y";
Clear = False;
Description = OPI_GoogleDrive.GetFileDescription(Clear);
Description.Insert("Parent", Directory);
Result = OPI_GoogleDrive.UploadFile(Token, Image, Description);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint gdrive UploadFile \
--token "***" \
--file "https://hut.openintegrations.dev/test_data/picture.jpg" \
--props "{'MIME':'image/jpeg','Name':'New file.jpg','Description':'This is a new file','Parent':'11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y'}"
:: JSON data can also be passed as a path to a .json file
oint gdrive UploadFile ^
--token "***" ^
--file "https://hut.openintegrations.dev/test_data/picture.jpg" ^
--props "{'MIME':'image/jpeg','Name':'New file.jpg','Description':'This is a new file','Parent':'11Mo30odYPEtBBU_0OndFx5dz1kP7tu-Y'}"
Result
{
"kind": "drive#file",
"id": "1Ddwg-hig7v56qRJTDAOO2uTdnDkL4yAB",
"name": "New file.jpg",
"mimeType": "image/jpeg"
}