Class FileIterator
FileIterator
可讓指令碼遍歷可能包含大量檔案的集合的疊代器。您可以透過 DriveApp
或 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());
}
內容詳盡的說明文件
getContinuationToken()
取得可用於稍後繼續執行此迭代的符記。如果在單一執行作業中處理迭代器會超過最大執行時間,此方法就很實用。接續符記的有效期限通常為一週。
回攻員
String
:可用於繼續此迭代作業的繼續符記,該符記會在產生符記時,保留在迭代器中的項目
hasNext()
判斷呼叫 next()
是否會傳回項目。
回攻員
Boolean
:如果 next()
會傳回項目,則為 true
;否則為 false
next()
取得檔案或資料夾集合中的下一個項目。如果沒有任何項目,就會擲回例外狀況。
回攻員
File
:集合中的下一個項目
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-12-22 (世界標準時間)。
[null,null,["上次更新時間:2024-12-22 (世界標準時間)。"],[[["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."]]],[]]