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 DeleteAsync()
trên tham chiếu đó.
// Create a reference to the file to delete. StorageReference desertRef = storageRef.Child("images/desert.jpg"); // Delete the file desertRef.DeleteAsync().ContinueWithOnMainThread(task => { if (task.IsCompleted) { Debug.Log("File deleted successfully."); } else { // Uh-oh, an error occurred! } });
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 cả 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.