Organiza tus páginas con colecciones
Guarda y categoriza el contenido según tus preferencias.
FileIterator
Un iterador que permite que las secuencias de comandos iteren sobre una colección potencialmente grande de archivos. Se puede acceder a los iteradores de archivos desde DriveApp o 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());
}
Obtiene el siguiente elemento de la colección de archivos o carpetas.
Documentación detallada
getContinuationToken()
Obtiene un token que se puede usar para reanudar esta iteración más adelante. Este método es útil si el procesamiento de un iterador en una ejecución superaría el tiempo máximo de ejecución.
Por lo general, los tokens de Continuation son válidos durante una semana.
Volver
String: Es un token de Continuation que se puede usar para reanudar esta iteración con los elementos que permanecieron en el iterador cuando se generó el token.
hasNext()
Determina si llamar a next() mostrará un elemento.
Volver
Boolean: true si next() muestra un elemento; false si no
next()
Obtiene el siguiente elemento de la colección de archivos o carpetas. Arroja una excepción si no queda ningún elemento.
[[["Fácil de comprender","easyToUnderstand","thumb-up"],["Resolvió mi problema","solvedMyProblem","thumb-up"],["Otro","otherUp","thumb-up"]],[["Falta la información que necesito","missingTheInformationINeed","thumb-down"],["Muy complicado o demasiados pasos","tooComplicatedTooManySteps","thumb-down"],["Desactualizado","outOfDate","thumb-down"],["Problema de traducción","translationIssue","thumb-down"],["Problema con las muestras o los códigos","samplesCodeIssue","thumb-down"],["Otro","otherDown","thumb-down"]],["Última actualización: 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."]]],[]]