// Create a reference to the file to delete.StorageReferencedesertRef=storageRef.Child("images/desert.jpg");// Delete the filedesertRef.DeleteAsync().ContinueWithOnMainThread(task=>{if(task.IsCompleted){Debug.Log("File deleted successfully.");}else{// Uh-oh, an error occurred!}});