Advertisement
Namokonov

from pdf to doc

Nov 22nd, 2020
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function SAVE(){
  2.   const u = 'https://mindortrans.tatarstan.ru/file/mindortrans/File/%D1%80%D0%B5%D0%B5%D1%81%D1%82%D1%80%20%D0%BD%D0%B0%20%D1%81%D0%B0%D0%B9%D1%82%2030.10.2020.pdf';
  3.   const b = getFileBlob123(u);
  4.  
  5.   Logger.log(saveBlob123(b, '1NKirQt9K_xJUQmFgrJb_pzHKZvCwAhZFNlILvRkKWM8'));  
  6. }
  7.  
  8. function getFileBlob123(url){
  9.   var params = {
  10.     "method":"POST",
  11.     "contentType": 'application/pdf',
  12.   };
  13.   return UrlFetchApp.fetch(url).getBlob();
  14. }
  15.  
  16. function saveBlob123(blob, id) {  
  17.   Drive.Files.update({title: name}, id, blob, {
  18.     convert: true
  19.   });  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement