Google script download file to drive
2 Aug 2019 First, you'll need to download copies of your files from Google Drive to your local hard drive (or external drive) to prepare for the upload to Box. export const saveGmailtoGoogleDrive = () => { const folderId = 'Google_Drive_Folder_Id'; const searchQuery = 'has:attachments'; const threads = GmailApp.search(searchQuery, 0, 10); threads.forEach(thread => { const messages = thread…