发送反馈
Class FolderIterator
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
FolderIterator
一个允许脚本遍历可能庞大的文件夹集合的对象。可从 DriveApp
、File
或 Folder
访问文件夹迭代器。
// Log the name of every folder in the user's Drive.
var folders = DriveApp.getFolders();
while (folders.hasNext()) {
var folder = folders.next();
Logger.log(folder.getName());
}
详细文档
getContinuationToken()
获取可用于稍后继续此迭代的令牌。如果在一次执行中处理迭代器会超过最长执行时间,则此方法很有用。延续令牌通常有效期为一周。
返回
String
- 一个延续令牌,可用于在生成令牌时用于留在迭代器中的项继续此迭代
hasNext()
确定调用 next()
是否会返回项。
返回
Boolean
- 如果 next()
将返回商品,则返回 true
;如果未返回,则返回 false
next()
获取文件或文件夹集合中的下一项。如果不存在任何项,则会抛出异常。
返回
Folder
- 集合中的下一项
发送反馈
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可 获得了许可,并且代码示例已根据 Apache 2.0 许可 获得了许可。有关详情,请参阅 Google 开发者网站政策 。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2022-08-17。
[{
"type": "thumb-down",
"id": "missingTheInformationINeed",
"label":"没有我需要的信息"
},{
"type": "thumb-down",
"id": "tooComplicatedTooManySteps",
"label":"太复杂/步骤太多"
},{
"type": "thumb-down",
"id": "outOfDate",
"label":"内容需要更新"
},{
"type": "thumb-down",
"id": "translationIssue",
"label":"翻译问题"
},{
"type": "thumb-down",
"id": "samplesCodeIssue",
"label":"示例/代码问题"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"其他"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"易于理解"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"解决了我的问题"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"其他"
}]
需要向我们提供更多信息?