Answers for "script to download a file to google drive"

Go
0

script to download a file to google drive

function saveFile() {
  var url = "http://www.ferc.gov/docs-filing/eqr/soft-tools/sample-csv/contract.txt";
  var blob = UrlFetchApp.fetch(url).getBlob();
  DriveApp.createFile(blob);
}
Posted by: Guest on August-14-2020

Code answers related to "script to download a file to google drive"

Browse Popular Code Answers by Language