संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
FileIterator
यह एक इटरेटर है, जो स्क्रिप्ट को फ़ाइलों के एक बड़े संग्रह पर फिर से दोहराने की अनुमति देता है. फ़ाइल
इटरेटर को DriveApp या Folder से ऐक्सेस किया जा सकता है.
इससे एक टोकन मिलता है, जिसे बाद में इस प्रक्रिया को फिर से शुरू करने के लिए इस्तेमाल किया जा सकता है. यह तरीका काम का है
अगर इटरेटर को एक एक्ज़ीक्यूशन में प्रोसेस करने पर, एक्ज़ीक्यूशन में ज़्यादा से ज़्यादा समय लग सकता है.
कंटिन्यूएशन टोकन, आम तौर पर एक हफ़्ते के लिए मान्य होते हैं.
वापसी का टिकट
String — इस प्रोसेस को फिर से शुरू करने के लिए, इस्तेमाल किया जा सकता है:
टोकन जनरेट होने के दौरान, इटरेटर में बनी रही
hasNext()
इससे यह तय होता है कि next() को कॉल करने पर कोई आइटम दिखेगा या नहीं.
वापसी का टिकट
Boolean — अगर next() कोई आइटम लौटाएगा, तो true; अगर नहीं है, तो false
next()
फ़ाइलों या फ़ोल्डर के संग्रह का अगला आइटम पाएं. अगर कोई आइटम नहीं है, तो अपवाद देता है
रहने दें.
[[["समझने में आसान है","easyToUnderstand","thumb-up"],["मेरी समस्या हल हो गई","solvedMyProblem","thumb-up"],["अन्य","otherUp","thumb-up"]],[["वह जानकारी मौजूद नहीं है जो मुझे चाहिए","missingTheInformationINeed","thumb-down"],["बहुत मुश्किल है / बहुत सारे चरण हैं","tooComplicatedTooManySteps","thumb-down"],["पुराना","outOfDate","thumb-down"],["अनुवाद से जुड़ी समस्या","translationIssue","thumb-down"],["सैंपल / कोड से जुड़ी समस्या","samplesCodeIssue","thumb-down"],["अन्य","otherDown","thumb-down"]],["आखिरी बार 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."]]],[]]