Android平台下如何删除SDCARD中的文件/文件夹?

发布于 2024-12-27 14:09:24 字数 277 浏览 2 评论 0原文

我想知道如何删除 SD 卡中的文件/文件夹。我尝试了下面的代码:

File folder = Environment.getExternalStorageDirectory();
String fileName = folder.getPath() + "/LOST.DIR/ppt52.ppt";
File myFile = new File(fileName);
if(myFile.exists()) {
    myFile.delete();
}

但它不起作用。

I want to know how to delete a file/folder in SD Card. I tried the code below:

File folder = Environment.getExternalStorageDirectory();
String fileName = folder.getPath() + "/LOST.DIR/ppt52.ppt";
File myFile = new File(fileName);
if(myFile.exists()) {
    myFile.delete();
}

but it didn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木格 2025-01-03 14:09:24

也许您尝试访问的文件夹已受保护。所以在访问之前尝试改变访问模式。

或者您缺少以下权限,

uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE

Maybe the folder you are trying to access is Protected. So try to change the access mode before accessing it.

Or you are missing the following permission,

uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文