Stay organized with collections
Save and categorize content based on your preferences.
After uploading files to Cloud Storage, you can also delete them.
Delete a File
To delete a file, first
create a reference
to that file. Then call the Delete() method on that reference.
// 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}
Handle Errors
There are a number of reasons why errors may occur on file deletes,
including the file not existing, or the user not having permission
to delete the specified file. More information on errors can be found in the
Handle Errors
section of the docs.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-15 UTC."],[],[],null,["\u003cbr /\u003e\n\nAfter uploading files to Cloud Storage, you can also delete them.\n| **Note:** By default, a Cloud Storage for Firebase bucket requires Firebase Authentication to perform any action on the bucket's data or files. You can change your Firebase Security Rules for Cloud Storage to [allow unauthenticated access for specific situations](/docs/storage/security/rules-conditions#public). However, for most situations, we strongly recommend [restricting access and setting up robust security rules](/docs/storage/security/get-started) (especially for production apps). Note that if you use Google App Engine and have a default Cloud Storage bucket with a name format of `*.appspot.com`, you may need to consider [how your security rules impact access to App Engine files](/docs/storage/gcp-integration#security-rules-and-app-engine-files).\n\nDelete a File\n\nTo delete a file, first\n[create a reference](/docs/storage/cpp/create-reference)\nto that file. Then call the `Delete()` method on that reference. \n\n```c++\n// Create a reference to the file to delete.\nStorageReference *desert_ref = storage_ref.Child(\"images/desert.jpg\");\n\n// Delete the file\nFuture future = desert_ref.Delete();\n\n// Wait for operation to complete...\n\nif (future.Error() != firebase::storage::kErrorNone) {\n // Uh-oh, an error occurred!\n} else {\n // File deleted successfully\n}\n```\n| **Note:** Deleted files are typically recoverable for 7 days with [soft delete](https://cloud.google.com/storage/docs/soft-delete), which is enabled by default.\n\nHandle Errors\n\nThere are a number of reasons why errors may occur on file deletes,\nincluding the file not existing, or the user not having permission\nto delete the specified file. More information on errors can be found in the\n[Handle Errors](/docs/storage/cpp/handle-errors)\nsection of the docs."]]