Ricerca…


Osservazioni

È anche possibile ottenere un file tramite l'URL del file. L'ID di un file è nell'URL, quindi l'utilizzo dell'ID anziché dell'intero URL indica che il parametro è più breve. La memorizzazione dell'URL anziché dell'ID occupa più spazio.

Ottieni un file da Google Drive utilizzando l'ID del file

function getGoogleDriveFileById(id) {
  var file;
  
  file = DriveApp.getFileById(id);//Returns a file - The "id" must be a string
  
  //One way to manually get a file ID
  // - Open the file from Google Drive
  // - The file ID is in the URL in the browsers address bar
  //https://docs.google.com/spreadsheets/d/File_ID_is_here/edit#gid=0
};


Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow