DriveApp
Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
Crea un nuovo file Drive
function createFileOnDrive(name, content) {
// Create an HTML file with the name and content provided
DriveApp.createFile(name, content, MimeType.HTML);
}
Ottieni un file da Drive
function getFileFromDrive(name) {
const files = DriveApp.getFilesByName(name);
if (files.hasNext()) {
return files.next();
} else {
console.log(`No file found with name ${name}.`);
}
}
Elenco dei file Drive di un utente
function listAllFiles() {
// Log the name of every file in the user's Drive.
const files = DriveApp.getFiles();
for (const file of files) {
console.log(file.getName());
}
}
Elenco dei file di una cartella
function listAllFilesInFolder(folderId) {
// Log the name of every file in the folder.
const files = DriveApp.getFolderById(folderId).getFiles();
for (const file of files) {
console.log(file.getName());
}
}
Salvo quando diversamente specificato, i contenuti di questa pagina sono concessi in base alla licenza Creative Commons Attribution 4.0, mentre gli esempi di codice sono concessi in base alla licenza Apache 2.0. Per ulteriori dettagli, consulta le norme del sito di Google Developers. Java è un marchio registrato di Oracle e/o delle sue consociate.
Ultimo aggiornamento 2024-09-11 UTC.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2024-09-11 UTC."],[[["This script demonstrates how to create new HTML files in Google Drive using provided names and content with `DriveApp.createFile()`."],["It showcases retrieving specific files from Google Drive by name using `DriveApp.getFilesByName()` and handling cases where the file isn't found."],["The script provides functionality to list all files in a user's Google Drive or within a specific folder using `DriveApp.getFiles()` and `DriveApp.getFolderById()` respectively, outputting file names to the console."]]],[]]