Koleksiyonlar ile düzeninizi koruyun
İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.
FileIterator
Komut dosyalarının büyük olasılıkla büyük bir dosya koleksiyonunda iterasyon yapmasına olanak tanıyan bir iteratör. Dosya iteratörlerine DriveApp veya Folder üzerinden erişilebilir.
// Log the name of every file in the user's Drive.constfiles=DriveApp.getFiles();while(files.hasNext()){constfile=files.next();Logger.log(file.getName());}
Dosya veya klasör koleksiyonundaki sonraki öğeyi alır.
Ayrıntılı dokümanlar
getContinuationToken()
Bu iterasyonu daha sonra devam ettirmek için kullanılabilecek bir jeton alır. Bir iteratör tek bir yürütme işleminde işlenirse maksimum yürütme süresini aşarsa bu yöntem kullanışlıdır.
Devam jetonları genellikle bir hafta boyunca geçerlidir.
Return
String: Bu iterasyonu, jeton oluşturulduğunda iteratörde kalan öğelerle devam ettirmek için kullanılabilecek bir devam jetonu
hasNext()
next() çağrısının bir öğeyi döndürüp döndürmeyeceğini belirler.
Return
Boolean: next() bir öğe döndürecekse true, döndürmeyecekse false değerini döndürür.
next()
Dosya veya klasör koleksiyonundaki sonraki öğeyi alır. Hiçbir öğe kalmazsa istisna oluşturur.
[[["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-12-22 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."]]],[]]