Mantieni tutto organizzato con le raccolte
Salva e classifica i contenuti in base alle tue preferenze.
FileIterator
Un iteratore che consente agli script di eseguire l'iterazione su una raccolta potenzialmente grande di file. È possibile accedere agli iteratori di file da DriveApp o da un Folder.
// Log the name of every file in the user's Drive.
const files = DriveApp.getFiles();
while (files.hasNext()) {
const file = files.next();
Logger.log(file.getName());
}
Recupera l'elemento successivo nella raccolta di file o cartelle.
Documentazione dettagliata
getContinuationToken()
Restituisce un token che può essere utilizzato per riprendere questa iterazione in un secondo momento. Questo metodo è utile se l'elaborazione di un iteratore in un'esecuzione supererebbe il tempo di esecuzione massimo.
I token di continuazione sono generalmente validi per una settimana.
Invio
String: un token di continuazione che può essere utilizzato per riprendere questa iterazione con gli elementi rimasti nell'iteratore al momento della generazione del token
hasNext()
Determina se la chiamata a next() restituirà un elemento.
Invio
Boolean - true se next() restituirà un elemento; false in caso contrario
next()
Recupera l'elemento successivo nella raccolta di file o cartelle. Genera un'eccezione se non rimangono elementi.
[[["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-12-02 UTC."],[[["FileIterator allows scripts to iterate over a large collection of files within Google Drive, accessible via `DriveApp` or a `Folder`."],["It provides methods to check for more files (`hasNext()`), retrieve the next file (`next()`), and manage long iterations with continuation tokens (`getContinuationToken()`)."],["`getContinuationToken()` helps to resume iterations that might exceed execution time limits, with tokens typically valid for a week."],["`hasNext()` returns `true` if there are more files to iterate, allowing scripts to control the loop."],["`next()` retrieves the subsequent file in the collection, throwing an exception if none remain."]]],[]]