Does anybody know how to do a Script tha create a PDF from a Google Doc and store it into Google Drive?, this was my function
var Folder = DocsList.getFolder(FOLDER);
var doc = DocsList.getFileById(DOC_ID);
var docName = doc.getName();
var pdf = doc.getAs('application/pdf').getBytes();
//This suppose to be the accion, but such function cant be found
pdf.addToFolder(Folder);
