bvstone

GreenTools for Google Apps (G4G) v15.10 Now Includes Drive Functions that Work With Shared Drives

Posted:

GreenTools for Google Apps (G4G) v15.10 Now Includes Drive Functions that Work With Shared Drives

GreenTools for Google Apps (G4G) v15.10 now includes the G4GGDRV addon v8.00.  The main changes to this version is that you now can specify a shared drive name or shared drive id when performing most drive functions.

Leaving the Drive ID and Drive Name functions blank will default to using your personal local Google Drive.

Examples:

Upload to root of shared drive:
G4GUPLOAD ID(bvstone@xxxxx.com) STMF('/tmp/test.pdf') DRIVENAME('Test Shared Drive')        

Upload to folder of shared drive:
G4GUPLOAD ID(bvstone@xxxxx.com) STMF('/tmp/test.pdf') TOFLR('/temp') DRIVENAME('Test Shared Drive')        

The Source Physical File QRPGLESRC in the G4G library also includes a few more sample programs to show how to use the ILE functions to retrieve Drive IDs, Folder IDs and File IDs from both your local Google Drive and Shared Drives.

H DFTACTGRP(*NO) ACTGRP('G4G') BNDDIR('G4G')                          
 ****************************************************************     
 /copy qcopysrc,p.g4gdrv                                              
 ****************************************************************     
D id              S            256                                    
D errorMsg        S            256                                    
D rc              S             10i 0                                 
D driveID         S            128                                    
D fileID          S            128                                    
 ****************************************************************     
  id = 'bvstone@xxxxxxxx.com';                                        
                                                                      
  // get id of shared drive                                           
  g4gdrv_setValue('id':id);                                           
  g4gdrv_setValue('search_title':'Test Shared Drive');                
  g4gdrv_setValue('search_type':'drive');                             
  driveID = g4gdrv_getID(errorMsg);  

  // get id of folder in shared drive                               
  g4gdrv_setValue('id':id);                                       
  g4gdrv_setValue('in_drive_id':driveID);                         
  g4gdrv_setValue('search_title':'/test folder');                 
  g4gdrv_setValue('search_type':'folder');                        
  fileID = g4gdrv_getID(errorMsg);                                
                                                                
  // get id of file in shared drive                             
  g4gdrv_setValue('id':id);                                     
  g4gdrv_setValue('in_drive_id':driveID);                       
  g4gdrv_setValue('search_title':'/test folder/test.pdf');        
  g4gdrv_setValue('search_type':'file');                        
  fileID = g4gdrv_getID(errorMsg);         

  *INLR = *ON;                                                                     

As always, feel free to contact us with any questions.


Last edited 07/15/2022 at 12:00:12




Reply




© Copyright 1983-2024 BVSTools
GreenBoard(v3) Powered by the eRPG SDK, MAILTOOL Plus!, GreenTools for Google Apps, jQuery, jQuery UI, BlockUI, CKEditor and running on the IBM i (AKA AS/400, iSeries, System i).