Skip to main content

Update file

Updates file binary data

Function UpdateFile(Val Token, Val Identifier, Val File, Val NewName = "") Export

ParameterCLI optionTypeRequiredDescription
Token--tokenStringToken
Identifier--objectStringIdentifier of the object to update
File--fileBinaryData, StringFile source for update
NewName--titleStringNew file name (if necessary)
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.a0AT3oNZ89Gfvy6_DUg_tviJJnmBXSmGRrPL6Vym5gPCsPQEa3F606plSWJttyabLz5gHJY63An6XG9wKNlbVK4fkTSF_KNhqT5M6IGUm8THO6IWF0iGzg5z2SO...";
NewName = "UpdatedFile.jpg";
Identifier = "1oUMoSImbl8NKBVWQE9zkBdJ0QIPrkhtb";
File = "https://releases.openintegrations.dev/test_data/picture2.jpg"; // URL, Binary data or File path

Result = OPI_GoogleDrive.UpdateFile(Token, Identifier, File, NewName);
oint gdrive UpdateFile \
--token "***" \
--object "168lXYVR7WNtF0eUF0sCSsd1DB_YjuOmN" \
--file "https://releases.openintegrations.dev/test_data/picture2.jpg" \
--title "UpdatedFile.jpg"
Result
{
"kind": "drive#file",
"id": "1TOlGOPq6AlL6QxYHjyqtTvOPIriVoEvM",
"name": "UpdatedFile.jpg",
"mimeType": "image/jpeg"
}