אחרי שמעלים קבצים אל Cloud Storage, אפשר גם למחוק אותם.
מחיקת קובץ
כדי למחוק קובץ, קודם צריך ליצור הפניה אליו. לאחר מכן, קוראים ל-method 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! });
טיפול בשגיאות
יש כמה סיבות לכך שעשויות להתרחש שגיאות במחיקת קבצים, כולל מקרים שבהם הקובץ לא קיים או שהמשתמש לא קיבל הרשאה למחוק את הקובץ הרצוי. מידע נוסף על שגיאות זמין בקטע טיפול בשגיאות במסמכים.