حذف الملفات باستخدام 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
  }
}];
    

التعامل مع الأخطاء

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