1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2024-12-18 23:48:56 +02:00
OpenIntegrations/docs/en/md/Google_Drive/File-and-directory-management/Download-file.md
2024-06-05 10:19:46 +00:00

873 B

sidebar_position
6

Download file

Gets file by ID

Function DownloadFile(Val Token, Val Identifier, Val SavePath = "") Export

Parameter CLI option Type Destination
Token --token String Token
Identifier --object String File identifier
SavePath --out String File save path

Returns: BinaryData,String - Binary data or file path when SavePath parameter is specified

	
 
 Identifier = "1dg_MwwwPSPYT0p3y-8dvGWoapbwaaaaa";
 
 Response = OPI_GoogleDrive.DownloadFile(Token, Identifier); //Map
 Response = OPI_Tools.JSONString(Response); //String
 

	
 
 oint gdrive DownloadFile --token %token% --object "1dg_MwwwPSPYT0p3y-8dvGWoapbwaaaaa" --out %out%