आपकी फ़ाइलें, Cloud Storage बकेट में सेव होती हैं. इस बकेट में मौजूद फ़ाइलों को हैरारकी के हिसाब से स्ट्रक्चर में दिखाया जाता है. यह ठीक वैसे ही होता है जैसे आपकी लोकल हार्ड डिस्क पर फ़ाइल सिस्टम या Firebase रीयल टाइम डेटाबेस में मौजूद डेटा होता है. किसी फ़ाइल का रेफ़रंस बनाकर, आपका ऐप्लिकेशन उस फ़ाइल को ऐक्सेस कर सकता है. इसके बाद, इन पहचान फ़ाइलो�� का इस्तेमाल डेटा को अपलोड या डाउनलोड करने, मेटाडेटा को पाने या अपडेट करने या फ़ाइल को मिटाने के लिए किया जा सकता है. रेफ़रंस, किसी खास फ़ाइल या हैरारकी में किसी ज़्यादा लेवल वाले नोड पर ले जा सकता है.
अगर आपने Firebase रीयल टाइम डेटाबेस का इस्तेमाल किया है, तो ये पाथ आपको काफ़ी जाने-पहचाने लगेंगे. हालांकि, आपकी फ़ाइल का डेटा, रीयल टाइम डेटाबेस में नहीं, बल्कि Cloud Storage में सेव होता है.
रेफ़रंस बनाना
किसी फ़ाइल को अपलोड करने, डाउनलोड करने या मिटाने के लिए रेफ़रंस बनाएं. इसके अलावा, फ़ाइल का मेटाडेटा पाने या अपडेट करने के लिए भी रेफ़रंस बनाएं. रेफ़रंस को क्लाउड में मौजूद फ़ाइल का पॉइंटर माना जा सकता है. रेफ़रंस कम जगह लेते हैं. इसलिए, ज़रूरत के मुताबिक जितने चाहें उतने रेफ़रंस बनाए जा सकते हैं. ये कई कामों के लिए फिर से इस्तेमाल किए जा सकते हैं.
FirebaseStorage
सिंगलटन इंस्टेंस का इस्तेमाल करके रेफ़रंस बनाएं और उसका ref()
मैथड कॉल करें.
final storageRef = FirebaseStorage.instance.ref();
इसके बाद, किसी मौजूदा रेफ़रंस पर child()
तरीके का इस्तेमाल करके, ट्री में किसी निचली जगह का रेफ़रंस बनाया जा सकता है. उदाहरण के लिए, "images/space.jpg"
.
// Create a child reference
// imagesRef now points to "images"
final imagesRef = storageRef.child("images");
// Child references can also take paths
// spaceRef now points to "images/space.jpg
// imagesRef still points to "images"
final spaceRef = storageRef.child("images/space.jpg");
रेफ़रंस की मदद से नेविगेट करना
फ़ाइल हैरारकी में ऊपर जाने के लिए, parent
और root
प्रॉपर्टी का भी इस्तेमाल किया जा सकता है. parent
एक लेवल ऊपर ले जाता है,
जबकि root
सबसे ऊपर ले जाता है.
// parent allows us to move our reference to a parent node
// imagesRef2 now points to 'images'
final imagesRef2 = spaceRef.parent;
// root allows us to move all the way back to the top of our bucket
// rootRef now points to the root
final rootRef = spaceRef.root;
child()
, parent
, और root
कई बार एक साथ जोड़े जा सकते हैं, क्योंकि ये एक रेफ़रंस है. हालांकि, root.parent
को ऐक्सेस करने पर null
नतीजे मिलते हैं.
// References can be chained together multiple times
// earthRef points to 'images/earth.jpg'
final earthRef = spaceRef.parent?.child("earth.jpg");
// nullRef is null, since the parent of root is null
final nullRef = spaceRef.root.parent;
रेफ़रंस प्रॉपर्टी
fullPath
, name
, और bucket
प्रॉपर्टी का इस्तेमाल करके, रेफ़रंस की जांच करके, उनसे जुड़ी फ़ाइलों को बेहतर तरीके से समझा जा सकता है. इन प्रॉपर्टी से, फ़ाइल का पूरा पाथ, नाम, और बकेट की जानकारी मिलती है.
// Reference's path is: "images/space.jpg"
// This is analogous to a file path on disk
spaceRef.fullPath;
// Reference's name is the last segment of the full path: "space.jpg"
// This is analogous to the file name
spaceRef.name;
// Reference's bucket is the name of the storage bucket that the files are stored in
spaceRef.bucket;
रेफ़रंस से जुड़ी सीमाएं
रेफ़रंस पाथ और नामों में, यूनिकोड के मान्य वर्णों का कोई भी क्रम हो सकता है. हालांकि, इन पर कुछ पाबंदियां भी लागू होती हैं. जैसे:
- UTF-8 एन्कोड होने पर, reference.fullPath की कुल लंबाई 1 से 1024 बाइट के बीच होनी चाहिए.
- इसमें नई लाइन शुरू करने का चिह्न या लाइन फ़ीड वर्ण नहीं होने चाहिए.
#
,[
,]
,*
या?
का इस्तेमाल न करें, क्योंकि ये Firebase रीयलटाइम डेटाबेस या gsutil जैसे अन्य टूल के साथ ठीक से काम नहीं करते.
पूरा उदाहरण
// Points to the root reference
final storageRef = FirebaseStorage.instance.ref();
// Points to "images"
Reference? imagesRef = storageRef.child("images");
// Points to "images/space.jpg"
// Note that you can use variables to create child values
final fileName = "space.jpg";
final spaceRef = imagesRef.child(fileName);
// File path is "images/space.jpg"
final path = spaceRef.fullPath;
// File name is "space.jpg"
final name = spaceRef.name;
// Points to "images"
imagesRef = spaceRef.parent;
इसके बाद, आइए Cloud Storage में फ़ाइलें अपलोड करने का तरीका जानते हैं.