Cloud Storage में फ़ाइलें अपलोड करने के बाद, उन्हें मिटाया भी जा सकता है.
फ़ाइल मिटाना
किसी फ़ाइल को मिटाने के लिए, सबसे पहले उस फ़ाइल का रेफ़रंस बनाएं. इसके बाद, उस पहचान फ़ाइल के लिए delete()
तरीके को कॉल करें. इससे, समाधान होने वाला Promise
दिखता है. अगर Promise
अस्वीकार करता है, तो गड़बड़ी का मैसेज दिखता है.
Web
import { getStorage, ref, deleteObject } from "firebase/storage"; const storage = getStorage(); // Create a reference to the file to delete const desertRef = ref(storage, 'images/desert.jpg'); // Delete the file deleteObject(desertRef).then(() => { // File deleted successfully }).catch((error) => { // Uh-oh, an error occurred! });
Web
// Create a reference to the file to delete var desertRef = storageRef.child('images/desert.jpg'); // Delete the file desertRef.delete().then(() => { // File deleted successfully }).catch((error) => { // Uh-oh, an error occurred! });
गड़बड़ियां ठीक करना
फ़ाइल मिटाने पर गड़बड़ियां होने की कई वजहें हो सकती हैं. जैसे, फ़ाइल मौजूद न होना या उपयोगकर्ता के पास फ़ाइल मिटाने की अनुमति न होना. गड़बड़ियों के बारे में ज़्यादा जानकारी पाने के लिए, दस्तावेज़ों के गड़बड़ियों को मैनेज करें सेक्शन पर जाएं.