Watch demos on how to build & run AI-powered apps with Firebase at Demo Day '24.
Watch now.
提供意見
使用網頁版 Cloud Storage 刪除檔案
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
將檔案上傳至 Cloud Storage 後,您也可以刪除檔案。
注意: 根據預設,Cloud Storage for Firebase 值區需要 Firebase Authentication 才能對值區的資料或檔案執行任何動作。您可以將 Firebase Security Rules 變更為 Cloud Storage ,在特定情況下允許未經驗證的存取權 。不過,在大多數情況下,我們強烈建議您限制存取權並設定完善的安全性規則 (尤其是正式版應用程式)。請注意,如果您使用 Google App Engine ,且預設 Cloud Storage 儲存格以 *.appspot.com
為名稱格式,您可能需要考量安全性規則如何影響 App Engine 檔案的存取權 。
刪除檔案
如要刪除檔案,請先建立該檔案的參照 。接著,對該參照呼叫 delete()
方法,該方法會傳回已解析的 Promise
,如果 Promise
拒絕,則會傳回錯誤。
Web
進一步瞭解 樹狀結構可分離模組化 Web API,並升級 使用命名空間 API。 import { getStorage, ref, deleteObject } from "firebase/storage";
const storage = getStorage();
// Create a reference to the file to delete
const desertRef = ref(storage, 'images/desert.jpg');
// Delete the file
deleteObject(desertRef).then(() => {
// File deleted successfully
}).catch((error) => {
// Uh-oh, an error occurred!
});
Web
// Create a reference to the file to delete
var desertRef = storageRef.child('images/desert.jpg');
// Delete the file
desertRef.delete().then(() => {
// File deleted successfully
}).catch((error) => {
// Uh-oh, an error occurred!
});
注意: 刪除檔案是永久性動作!如果您想還原已刪除的檔案,請務必備份檔案,或在 Cloud Storage 值區啟用物件版本管理功能 。 處理錯誤
檔案刪除作業可能會發生錯誤,原因有很多,包括檔案不存在,或是使用者沒有權限刪除所需檔案。如要進一步瞭解錯誤,請參閱文件中的「處理錯誤 」一節。
提供意見
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權 ,程式碼範例則為阿帕契 2.0 授權 。詳情請參閱《Google Developers 網站政策 》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-11-24 (世界標準時間)。
想進一步說明嗎?
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2024-11-24 (世界標準時間)。"],[],[]]