حذف الملفات باستخدام Cloud Storage على الويب

بعد تحميل الملفات إلى 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!
});
وهي مفعّلة تلقائيًا.

معالجة الأخطاء

هناك عدة أسباب قد تؤدي إلى حدوث أخطاء عند حذف الملفات، بما في ذلك عدم توفّر الملف أو عدم توفّر إذن للمستخدم بحذف الملف المحدّد. يمكنك الاطّلاع على مزيد من المعلومات حول الأخطاء في قسم التعامل مع الأخطاء في المستندات.