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() | Boolean | لتحديد ما إذا كانت المكالمة إلى next() ستؤدي إلى عرض عنصر |
next() | File | الحصول على العنصر التالي في مجموعة الملفات أو المجلدات |
مستندات تفصيلية
getContinuationToken()
تحصل على رمز مميّز يمكن استخدامه لاستئناف هذه المحاولة في وقت لاحق. تكون هذه الطريقة مفيدة
إذا كانت معالجة أداة تكرار في عملية تنفيذ واحدة تتجاوز الحد الأقصى لعدد مرات التنفيذ.
تكون الرموز المميزة للمتابعة صالحة بشكل عام لمدة أسبوع واحد.
الإرجاع
String
: رمز مميّز للمتابعة يمكن استخدامه لاستئناف هذه التكرارات باستخدام العناصر التي ظلت في أداة التكرار عند إنشاء الرمز المميّز
hasNext()
لتحديد ما إذا كانت المكالمة إلى next()
ستؤدي إلى عرض عنصر
الإرجاع
Boolean
: true
إذا كان next()
سيعرض عنصرًا، false
إذا لم يكن الأمر كذلك
next()
الحصول على العنصر التالي في مجموعة الملفات أو المجلدات يُعرِض استثناءً إذا لم تبق أي عناصر.
الإرجاع
File
: العنصر التالي في المجموعة
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eFileIterator allows scripts to iterate over a large collection of files within Google Drive, accessible via \u003ccode\u003eDriveApp\u003c/code\u003e or a \u003ccode\u003eFolder\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eIt provides methods to check for more files (\u003ccode\u003ehasNext()\u003c/code\u003e), retrieve the next file (\u003ccode\u003enext()\u003c/code\u003e), and manage long iterations with continuation tokens (\u003ccode\u003egetContinuationToken()\u003c/code\u003e).\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003egetContinuationToken()\u003c/code\u003e helps to resume iterations that might exceed execution time limits, with tokens typically valid for a week.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ehasNext()\u003c/code\u003e returns \u003ccode\u003etrue\u003c/code\u003e if there are more files to iterate, allowing scripts to control the loop.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003enext()\u003c/code\u003e retrieves the subsequent file in the collection, throwing an exception if none remain.\u003c/p\u003e\n"]]],[],null,["# Class FileIterator\n\nFileIterator\n\nAn iterator that allows scripts to iterate over a potentially large collection of files. File\niterators can be accessed from [DriveApp](/apps-script/reference/drive/drive-app) or a [Folder](/apps-script/reference/drive/folder).\n\n```javascript\n// Log the name of every file in the user's Drive.\nconst files = DriveApp.getFiles();\nwhile (files.hasNext()) {\n const file = files.next();\n Logger.log(file.getName());\n}\n``` \n\n### Methods\n\n| Method | Return type | Brief description |\n|---------------------------------------------------|-------------------------------------------|-------------------------------------------------------------------------|\n| [getContinuationToken()](#getContinuationToken()) | `String` | Gets a token that can be used to resume this iteration at a later time. |\n| [hasNext()](#hasNext()) | `Boolean` | Determines whether calling [next()](#next()) will return an item. |\n| [next()](#next()) | [File](/apps-script/reference/drive/file) | Gets the next item in the collection of files or folders. |\n\nDetailed documentation\n----------------------\n\n### `get``Continuation``Token()`\n\nGets a token that can be used to resume this iteration at a later time. This method is useful\nif processing an iterator in one execution would exceed the maximum execution time.\nContinuation tokens are generally valid for one week.\n\n#### Return\n\n\n`String` --- a continuation token that can be used to resume this iteration with the items that\nremained in the iterator when the token was generated\n\n*** ** * ** ***\n\n### `has``Next()`\n\nDetermines whether calling [next()](#next()) will return an item.\n\n#### Return\n\n\n`Boolean` --- `true` if [next()](#next()) will return an item; `false` if not\n\n*** ** * ** ***\n\n### `next()`\n\nGets the next item in the collection of files or folders. Throws an exception if no items\nremain.\n\n#### Return\n\n\n[File](/apps-script/reference/drive/file) --- the next item in the collection"]]