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.