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
- true
(如果 next()
将返回商品);如果不是,则设为 false
next()
获取文件或文件夹集合中的下一项。如果没有项目,则会抛出异常
。
返回
File
- 集合中的下一项
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-08-21。
[null,null,["最后更新时间 (UTC):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."]]],[]]