1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-01-02 03:38:55 +02:00
OpenIntegrations/docs/en/md/Google_Drive/File-and-directory-management/Download-file.md
2024-07-10 13:58:29 +03:00

908 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%

<Binary file's binary data>