Skip to main content

Upload file

Uploads a file to the drive

Function UploadFile(Val Token, Val File, Val Description) Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
File--fileBinaryData,StringFile to be uploaded
Description--propsMap Of KeyAndValueSee 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.a0ATi6K2tVhkOEu91I_FKDEZ7_olNcPRKrwKbGh7GiFIzwDZjaTNm46ErGj-Lju2am1aAUurgQyVnv0f3G4L7keHSXYNhuCPGvTvzjRdPQJNz_0LzKWjviK54u4...";
Image = "https://hut.openintegrations.dev/test_data/picture.jpg";
Directory = "1RA5EV-HEr2SDzooZLmZ2h6HnnmZ0EHzP";

Clear = False;
Description = OPI_GoogleDrive.GetFileDescription(Clear);

Description.Insert("Parent", Directory);

Result = OPI_GoogleDrive.UploadFile(Token, Image, Description);
    # 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':'1RA5EV-HEr2SDzooZLmZ2h6HnnmZ0EHzP'}"
Result
{
"kind": "drive#file",
"id": "1oUMoSImbl8NKBVWQE9zkBdJ0QIPrkhtb",
"name": "New file.jpg",
"mimeType": "image/jpeg"
}