使用 Flutter 中的 Cloud Storage 刪除檔案

將檔案上傳至 Cloud Storage 後,也可以刪除檔案。

刪除檔案

如要刪除檔案,請先建立參考檔案 檔案。然後對該參照呼叫 delete() 方法。

// Create a reference to the file to delete
final desertRef = storageRef.child("images/desert.jpg");

// Delete the file
await desertRef.delete();

處理錯誤

檔案刪除發生錯誤的可能原因有很多, 包含檔案不存在,或使用者沒有權限 刪除所需檔案如要進一步瞭解錯誤,請前往 請參閱本文件的「處理錯誤」一節。