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()
このイテレーションを後で再開するために使用できるトークンを取得します。この方法は、1 回の実行でイテレータを処理すると最大実行時間が超過する場合に便利です。通常、連続トークンの有効期間は 1 週間です。
戻る
String
- トークンが生成されたときにイテレータに残っていたアイテムを使用して、この反復処理を再開するために使用できる連続トークン
hasNext()
next()
の呼び出しでアイテムが返されるかどうかを判断します。
戻る
Boolean
- next()
がアイテムを返す場合は true
、返さない場合は false
next()
ファイルまたはフォルダのコレクション内の次のアイテムを取得します。アイテムが残っていない場合は例外をスローします。
戻る
File
- コレクション内の次のアイテム
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-12-22 UTC。
[null,null,["最終更新日 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."]]],[]]