Dateien mit Cloud Storage auf Apple-Plattformen löschen
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Nachdem Sie Dateien in Cloud Storage hochgeladen haben, können Sie sie auch wieder löschen.
Datei löschen
Wenn Sie eine Datei löschen möchten, müssen Sie zuerst eine Referenz zu dieser Datei erstellen. Rufen Sie dann die Methode deleteWithCompletion: für diese Referenz auf.
Swift
// Create a reference to the file to deleteletdesertRef=storageRef.child("desert.jpg")do{// Delete the filetryawaitdesertRef.delete()}catch{// ...}
Objective-C
// Create a reference to the file to deleteFIRStorageReference*desertRef=[storageRefchild:@"images/desert.jpg"];// Delete the file[desertRefdeleteWithCompletion:^(NSError*error){if(error!=nil){// Uh-oh, an error occurred!}else{// File deleted successfully}}];
Fehler beheben
Es gibt eine Reihe von Gründen, warum beim Löschen von Dateien Fehler auftreten können. Dazu gehören, dass die Datei nicht vorhanden ist oder der Nutzer keine Berechtigung zum Löschen der angegebenen Datei hat. Weitere Informationen zu Fehlern finden Sie in der Dokumentation im Abschnitt Fehlerbehebung.
[null,null,["Zuletzt aktualisiert: 2025-08-29 (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/ios/create-reference)\nto that file. Then call the `deleteWithCompletion:` method on that reference. \n\nSwift \n\n```swift\n// Create a reference to the file to delete\nlet desertRef = storageRef.child(\"desert.jpg\")\n\ndo {\n // Delete the file\n try await desertRef.delete()\n} catch {\n // ...\n}\n \n```\n\nObjective-C \n\n```objective-c\n// Create a reference to the file to delete\nFIRStorageReference *desertRef = [storageRef child:@\"images/desert.jpg\"];\n\n// Delete the file\n[desertRef deleteWithCompletion:^(NSError *error){\n if (error != nil) {\n // Uh-oh, an error occurred!\n } else {\n // File deleted successfully\n }\n}];\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/ios/handle-errors)\nsection of the docs."]]