Xoá tệp bằng Cloud Storage cho C++

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

Xoá tệp

Để xoá một tệp, trước tiên, hãy tạo một tệp tham chiếu đến tệp đó. Sau đó, hãy gọi phương thức Delete() trên tham chiếu đó.

// Create a reference to the file to delete.
StorageReference *desert_ref = storage_ref.Child("images/desert.jpg");

// Delete the file
Future future = desert_ref.Delete();

// Wait for operation to complete...

if (future.Error() != firebase::storage::kErrorNone) {
  // Uh-oh, an error occurred!
} else {
  // File deleted successfully
}

Xử lý lỗi

Có một số lý do có thể khiến lỗi xảy ra khi xoá tệp, bao gồm cả khi 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ề lỗi trong phần Xử lý lỗi của tài liệu.