如何在 Android 上以编程方式删除文件?

我在4.4.2上,试图通过 uri 删除一个文件(图片)。以下是我的代码:

File file = new File(uri.getPath());
boolean deleted = file.delete();
if(!deleted){
boolean deleted2 = file.getCanonicalFile().delete();
if(!deleted2){
boolean deleted3 = getApplicationContext().deleteFile(file.getName());
}
}

现在,这些 delete 函数都没有真正删除文件:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
147929 次浏览

为什么不用这段代码测试一下:

File fdelete = new File(uri.getPath());
if (fdelete.exists()) {
if (fdelete.delete()) {
System.out.println("file Deleted :" + uri.getPath());
} else {
System.out.println("file not Deleted :" + uri.getPath());
}
}

我认为问题的一部分是你从来没有尝试删除文件,你只是不断创建一个变量,有一个方法调用。

所以在你的情况下,你可以尝试:

File file = new File(uri.getPath());
file.delete();
if(file.exists()){
file.getCanonicalFile().delete();
if(file.exists()){
getApplicationContext().deleteFile(file.getName());
}
}

不过我觉得有点过了。

您添加了一条注释,说明您使用的是外部目录而不是 uri。所以你应该加上这样的内容:

String root = Environment.getExternalStorageDirectory().toString();
File file = new File(root + "/images/media/2918");

然后尝试删除文件。

试试这个,对我很有效。

handler.postDelayed(new Runnable() {
@Override
public void run() {
// Set up the projection (we only need the ID)
String[] projection = { MediaStore.Images.Media._ID };


// Match on the file path
String selection = MediaStore.Images.Media.DATA + " = ?";
String[] selectionArgs = new String[] { imageFile.getAbsolutePath() };


// Query for the ID of the media matching the file path
Uri queryUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
ContentResolver contentResolver = getActivity().getContentResolver();
Cursor c = contentResolver.query(queryUri, projection, selection, selectionArgs, null);


if (c != null) {
if (c.moveToFirst()) {
// We found the ID. Deleting the item via the content provider will also remove the file
long id = c.getLong(c.getColumnIndexOrThrow(MediaStore.Images.Media._ID));
Uri deleteUri = ContentUris.withAppendedId(queryUri, id);
contentResolver.delete(deleteUri, null, null);
} else {
// File not found in media store DB
}
c.close();
}
}
}, 5000);

看来你已经找到答案了,不过对我没用。Delete 一直返回 false,所以我尝试了以下方法,结果奏效了(对于其他选择的答案不起作用的人) :

System.out.println(new File(path).getAbsoluteFile().delete());

系统出来可以明显忽略,我把它方便确认删除。

我在牛轧糖模拟器上测试了这段代码,它起作用了:

在清单中添加:

<application...


<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</application>

在 res 文件夹中创建空的 xml 文件夹,并在 Provider _ path. xml 中创建过去文件夹:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>

然后将下一个片段放入代码中(例如片段) :

File photoLcl = new File(homeDirectory + "/" + fileNameLcl);
Uri imageUriLcl = FileProvider.getUriForFile(getActivity(),
getActivity().getApplicationContext().getPackageName() +
".provider", photoLcl);
ContentResolver contentResolver = getActivity().getContentResolver();
contentResolver.delete(imageUriLcl, null, null);

首先传唤意图

Intent intenta = new Intent(Intent.ACTION_OPEN_DOCUMENT_TREE);
startActivityForResult(intenta, 42);

然后调用结果

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
switch (requestCode) {
case 42:
if (resultCode == Activity.RESULT_OK) {
Uri sdCardUri = data.getData();
DocumentFile pickedDir = DocumentFile.fromTreeUri(this, sdCardUri);
for (DocumentFile file : pickedDir.listFiles()) {
String pp = file.getName();
if(pp.equals("VLC.apk"))
file.delete();
String ppdf="";
}
File pathFile = new File(String.valueOf(sdCardUri));
pathFile.delete();
}
break;
}
}
File file=new File(getFilePath(imageUri.getValue()));
boolean b= file.delete();

这个问题已经通过使用下面的代码解决了

ContentResolver contentResolver = getContentResolver ();
contentResolver.delete (uriDelete,null ,null );

可以使用 delete()方法删除文件。

首先,您需要通过将文件的路径指定为参数来在代码中创建 File 引用,然后调用 delete()方法来删除该文件。

String path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS) + "/video1.mp4";
new File(path).delete();