Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
FileIterator
Komut dosyalarının, potansiyel olarak büyük bir dosya koleksiyonunda yineleme yapmasına olanak tanıyan bir yinelemedir. Dosya
iteratörlere DriveApp veya Folder üzerinden erişilebilir.
Dosya veya klasör koleksiyonundaki sonraki öğeyi alır.
Ayrıntılı belgeler
getContinuationToken()
Bu yinelemeyi daha sonra devam ettirmek için kullanılabilecek bir jeton alır. Bu yöntem yararlıdır
bir yürütmede yineleyicinin işlenmesi maksimum yürütme süresini aşıyorsa geçerlidir.
Devam jetonları genellikle bir hafta boyunca geçerlidir.
Return
String - bu yinelemeyi
jeton oluşturulduğunda yinelemede kaldı
hasNext()
next() işlevinin çağrılmasının bir öğeyi iade edip etmeyeceğini belirler.
Return
Boolean — next() bir öğeyi iade ederse true; Değilse false
next()
Dosya veya klasör koleksiyonundaki sonraki öğeyi alır. Hiçbir öğe yoksa istisna atar
kalır.
[[["Anlaması kolay","easyToUnderstand","thumb-up"],["Sorunumu çözdü","solvedMyProblem","thumb-up"],["Diğer","otherUp","thumb-up"]],[["İhtiyacım olan bilgiler yok","missingTheInformationINeed","thumb-down"],["Çok karmaşık / çok fazla adım var","tooComplicatedTooManySteps","thumb-down"],["Güncel değil","outOfDate","thumb-down"],["Çeviri sorunu","translationIssue","thumb-down"],["Örnek veya kod sorunu","samplesCodeIssue","thumb-down"],["Diğer","otherDown","thumb-down"]],["Son güncelleme tarihi: 2024-08-21 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."]]],[]]