حذف الملفات باستخدام Cloud Storage على أنظمة Apple الأساسية

بعد تحميل الملفات إلى Cloud Storage، يمكنك أيضًا حذفها.

حذف ملف

لحذف ملف، عليك أولاً إنشاء إشارة إلى هذا الملف. بعد ذلك، استخدِم طريقة deleteWithCompletion: مع هذا المرجع.

Swift

// Create a reference to the file to delete
let desertRef = storageRef.child("desert.jpg")

do {
  // Delete the file
  try await desertRef.delete()
} catch {
  // ...
}
    

Objective-C

// Create a reference to the file to delete
FIRStorageReference *desertRef = [storageRef child:@"images/desert.jpg"];

// Delete the file
[desertRef deleteWithCompletion:^(NSError *error){
  if (error != nil) {
    // Uh-oh, an error occurred!
  } else {
    // File deleted successfully
  }
}];
    

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

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