bvstone

Download and Convert Google Docs to Your IBM IFS with GreenTools for G Suite (G4G)

Posted:

Download and Convert Google Docs to Your IBM IFS with GreenTools for G Suite (G4G)

We recently updated our GreenTools for G Suite (G4G) application to allow you to download files from your Google Drive with the option to convert them to a new format.  

This means you can easily convert files from one format to another (for example, RTF to PDF) using a couple simple steps.

Step 1: Make Sure the File is in a Google Format

In order to download a file and convert it to another format, the document must first be in a Google Documents format.  This can be done right in Google Drive itself. 

If you upload the file using G4G there is also a convert option.  This means  that when the file is uploaded it will automatically be converted to a Google Drive format.  An example is as follows using the G4GUPLOAD command:

G4GUPLOAD ID(bvstone@gmail.com) STMF('/tmp/test.rtf') TOFLR(*ROOT) CONVERT(*YES)                                                                          

The #g4gdrv_upload() ILE function can also be used in a program to do the same thing.  

Once the file is uploaded it will automatically be converted to a Google Docs Format.

Step 2: Download the File and Specify a New Format

Next we will use the G4GDLOAD command to download the file and specify the new format that we wish to save the file as:

G4GDLOAD ID(bvstone@gmail.com) DFLR(*ROOT) DFILE(test.rtf) CONVERT(*YES) MIMETYPE('application/pdf') LDIR('/tmp') LFILE(test.rtf.pdf)

The #g4gdrv_downloadFile() ILE function can again be used in a program to do the same thing.  

The only thing you will want to make sure is you name the file that is downloaded instead of leaving it as the default.  This is because the default local file name defaults to the actual file name, and you wouldn't want your file (test.rtf) when converted to PDF (or another format) to be named test.rtf as well.

Once the command or program completes you will have the newly formatted file in your IFS.

With all of the available options for conversions (see this article for a list) the possibilities are nearly endless on how to use this for file conversion processes!

Here is a quick program we put together that will upload an RTF file, converting it to a Google Docs format, then download the file and converting it to PDF:

H DFTACTGRP(*NO) ACTGRP('G4G') BNDDIR('BVSTOOLS')                        
 ****************************************************************        
 /copy qcopysrc,p.g4gdrv                                                 
D id              S            256                                       
D errorMsg        S            256                                       
D rc              S             10i 0                                    
 *                                                                       
 /free                                                                   
  #g4gdrv_setValue('id':'bvstone@gmail.com');                            
  #g4gdrv_setValue('upload_file':'/tmp/test.rtf');                       
  #g4gdrv_setValue('convert_file':'*YES');                                    
  rc = #g4gdrv_upload(id:errorMsg);                                      
                                                                         
  if (rc > 0);                                                           
    #g4gdrv_setValue('id':'bvstone@gmail.com');                          
    #g4gdrv_setValue('file_id':id);                                      
    #g4gdrv_setValue('convert_file':'*YES');                             
    #g4gdrv_setValue('mime_type':'application/pdf');   
    #g4gdrv_setValue('download_to_directory':'/tmp');                
    #g4gdrv_setValue('download_to_filename':'test.rtf.pdf');         
    #g4gdrv_setValue('replace_file':'*YES');                         
    rc = #g4gdrv_downloadFile(errorMsg);                             
  endif;                                                             
                                                                    
  *INLR = *ON;                                                                         

 


Last edited 10/01/2017 at 11:03:31



Latest Posts:

QuickBooks Online - Subtotals and Discounts Frustration QuickBooks Online - Subtotals and Discounts Frustration
Posted by March 16, 2023
QuickBooks >> QuickBooks Online
Making the Switch From QuickBooks Desktop to QuickBooks Online - No Picnic Making the Switch From QuickBooks Desktop to QuickBooks Online - No Picnic
Posted by March 16, 2023
QuickBooks >> QuickBooks Online
BVSTools Software Verified on V7R5 and Power10 BVSTools Software Verified on V7R5 and Power10
Posted by December 9, 2022
BVSTools >> BVSTools Announcements
Microsoft Office 365 Servers and Random Errors Issue Microsoft Office 365 Servers and Random Errors Issue
Posted by November 14, 2022
BVSTools >> BVSTools Software Discussion >> Email Tools (MAILTOOL) Specific Discussion
Sending/Resending Emails Using a MIME File with MAILTOOL Sending/Resending Emails Using a MIME File with MAILTOOL
Posted by November 8, 2022
BVSTools >> BVSTools Software Discussion >> Email Tools (MAILTOOL) Specific Discussion
Sending an HTML Email on Your IBM i Using MAILTOOL Sending an HTML Email on Your IBM i Using MAILTOOL
Posted by November 1, 2022
BVSTools >> BVSTools Software Discussion >> Email Tools (MAILTOOL) Specific Discussion
Transferring License Keys from One System to Another Transferring License Keys from One System to Another
Posted by October 31, 2022
BVSTools >> BVSTools Software Discussion
Calculating the Size of a File Before Base64 Encoding Calculating the Size of a File Before Base64 Encoding
Posted by August 13, 2022
Programming >> RPG Programming
GreenTools for Microsoft Apps (G4MS) v9.12 Now Includes Function to Send Emails using MIME File GreenTools for Microsoft Apps (G4MS) v9.12 Now Includes Function to Send Emails using MIME File
Posted by August 11, 2022
BVSTools >> BVSTools Announcements >> GreenTools for Microsoft Apps (G4MS) Specific Announcements
GreenTools for Google Apps (G4G) v15.20 Now Supports Shortcuts GreenTools for Google Apps (G4G) v15.20 Now Supports Shortcuts
Posted by August 6, 2022
BVSTools >> BVSTools Announcements >> GreenTools for G Suite (Google Apps) (G4G) Specific Announcements
GreenTools for Microsoft Apps (G4MS) Groups Admin Authority Instructions GreenTools for Microsoft Apps (G4MS) Groups Admin Authority Instructions
Posted by July 26, 2022
BVSTools >> BVSTools Software Discussion >> GreenTools for Microsoft Apps (G4MS) Specific Discussion
GreenTools for Microsoft Apps (G4MS) v9.10 Now Includes OneDrive Functions that Work With Groups/Shared Drives GreenTools for Microsoft Apps (G4MS) v9.10 Now Includes OneDrive Functions that Work With Groups/Shared Drives
Posted by July 19, 2022
BVSTools >> BVSTools Announcements >> GreenTools for Microsoft Apps (G4MS) Specific Announcements
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 Drive Functions that Work With Shared Drives
Posted by July 15, 2022
BVSTools >> BVSTools Announcements >> GreenTools for G Suite (Google Apps) (G4G) Specific Announcements
GreenTools for Microsoft Apps (G4MS) v9.00 Now Offers Functions to Bypass Registration Command and BVSTools Landing Page GreenTools for Microsoft Apps (G4MS) v9.00 Now Offers Functions to Bypass Registration Command and BVSTools Landing Page
Posted by July 4, 2022
BVSTools >> BVSTools Announcements >> GreenTools for Microsoft Apps (G4MS) Specific Announcements
What Objects Should I Omit from Replication to Ensure My License Keys Work on my HA/DR System? What Objects Should I Omit from Replication to Ensure My License Keys Work on my HA/DR System?
Posted by June 27, 2022
BVSTools >> BVSTools Software Discussion

Reply




© Copyright 1983-2020 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).