Last active
November 16, 2017 01:20
-
-
Save rheajt/1a815a848853decf4eb94b463ad8371d to your computer and use it in GitHub Desktop.
google apps script to turn docs into pdfs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getDocs() { | |
var folderId= '<<PUT YOUR FOLDER ID HERE>>'; | |
var pdfFolder = DriveApp.getFolderById(folderId).createFolder('PDFs'); | |
var files = DriveApp.getFolderById(folderId).getFilesByType(MimeType.GOOGLE_DOCS); | |
while(files.hasNext()) { | |
var file = files.next(); | |
var pdf = file.getAs('application/pdf'); | |
pdfFolder.createFile(pdf.copyBlob()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment