1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-26 05:37:27 +02:00
2024-08-14 09:06:31 +03:00

1.2 KiB

sidebar_position
4

Upload file

Uploads a file to the drive

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

Parameter CLI option Type Description
Token --token String Token
File --file BinaryData,String File to be uploaded
Description --props Map Of KeyAndValue JSON description or path to .json

Returns: Map Of KeyAndValue - serialized JSON response from Google


  
  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
    
  oint gdrive UploadFile --token %token% --file %file% --props %props%

{
  "mimeType": "image/jpeg",
  "name": "New file.jpg",
  "id": "16hPGNTMmbnXhz_g0vjGbrLP19h56RwIg",
  "kind": "drive#file"
  }