Xoá tệp bằng Cloud Storage trên các nền tảng của Apple

Sau khi tải tệp lên Cloud Storage, bạn cũng có thể xoá những tệp đó.

Xoá tệp

Để xóa một tệp, trước tiên tạo tệp đối chiếu cho tệp đó. Sau đó, hãy gọi phương thức deleteWithCompletion: trên tham chiếu đó.

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
  }
}];
    

Xử lý lỗi

Có một số lý do khiến lỗi có thể xảy ra khi xoá tệp, bao gồm tệp không tồn tại hoặc người dùng không có quyền để xoá tệp mong muốn. Bạn có thể xem thêm thông tin về các lỗi trong Xử lý lỗi của phần Tài liệu.