Lấy mục tiếp theo trong tập hợp các tệp hoặc thư mục.
Tài liệu chi tiết
getContinuationToken()
Nhận mã thông báo có thể dùng để tiếp tục vòng lặp này sau. Phương thức này hữu ích
nếu việc xử lý một đối tượng lặp trong một lần thực thi sẽ vượt quá thời gian thực thi tối đa.
Mã thông báo Tiếp tục thường có hiệu lực trong một tuần.
Cầu thủ trả bóng
String – một mã thông báo tiếp tục có thể được dùng để tiếp tục vòng lặp này với các mục
vẫn nằm trong trình lặp khi mã thông báo được tạo
hasNext()
Xác định xem việc gọi next() có trả về một mục hay không.
Cầu thủ trả bóng
Boolean – true nếu next() sẽ trả về một mặt hàng; false nếu không
next()
Lấy mục tiếp theo trong tập hợp các tệp hoặc thư mục. Gửi một trường hợp ngoại lệ nếu không có mục nào
.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 2024-08-21 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."]]],[]]