Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Trình duyệttệp
Một trình lặp cho phép tập lệnh lặp lại trên một tập hợp tệp có thể lớn. Bạn có thể truy cập trình duyệt tệp từ DriveApp hoặc Folder.
// Log the name of every file in the user's Drive.constfiles=DriveApp.getFiles();while(files.hasNext()){constfile=files.next();Logger.log(file.getName());}
Lấy mục tiếp theo trong bộ sưu tập tệp hoặc thư mục.
Tài liệu chi tiết
getContinuationToken()
Lấy một 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 trình 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ã thông báo tiếp tục có thể dùng để tiếp tục vòng lặp này với các mục còn lại 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() trả về một mục; false nếu không
next()
Lấy mục tiếp theo trong bộ sưu tập tệp hoặc thư mục. Gửi một trường hợp ngoại lệ nếu không còn 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-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."]]],[]]