Skip to content

Instantly share code, notes, and snippets.

@paoloconi96
Created April 13, 2023 19:23
Show Gist options
  • Save paoloconi96/ff69fe9fa2be0ae3a7f91e726ef9813d to your computer and use it in GitHub Desktop.
Save paoloconi96/ff69fe9fa2be0ae3a7f91e726ef9813d to your computer and use it in GitHub Desktop.
Simple Apps Script to automate the "Export As PDF" action of a Google Docs document
function main() {
const document = DocumentApp.getActiveDocument();
const pdfFileId = ScriptProperties.getProperty('pdfFileId');
if (!docWasUpdatedAfterPdf(document, pdfFileId)) {
return
}
updatePdfFileContent(document.getAs('application/pdf'), pdfFileId);
}
function updatePdfFileContent(fileContent, fileId) {
Drive.Files.update({}, fileId, fileContent);
}
function docWasUpdatedAfterPdf(document, pdfFileId) {
pdfLastUpdated = DriveApp.getFileById(pdfFileId)
.getLastUpdated();
docLastUpdated = DriveApp.getFileById(document.getId())
.getLastUpdated();
return pdfLastUpdated < docLastUpdated;
}
@paoloconi96
Copy link
Author

paoloconi96 commented Aug 10, 2024

To run this script it is also required to enable the Drive service in the Google Apps Script configurations of the project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment