Class FileIterator
FileIterator
可讓指令碼針對一大批檔案進行疊代的疊代器。檔案
您可以透過 DriveApp
或 Folder
存取疊代器。
// Log the name of every file in the user's Drive.
var files = DriveApp.getFiles();
while (files.hasNext()) {
var 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-08-21 (世界標準時間)。
[null,null,["上次更新時間:2024-08-21 (世界標準時間)。"],[[["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."]]],[]]