// Create a reference to the file to delete.StorageReference*desert_ref=storage_ref.Child("images/desert.jpg");// Delete the fileFuturefuture=desert_ref.Delete();// Wait for operation to complete...if(future.Error()!=firebase::storage::kErrorNone){// Uh-oh, an error occurred!}else{// File deleted successfully}