在Android中,F(xiàn)ileProvider用于在應(yīng)用程序之間共享文件。要處理文件刪除,您需要執(zhí)行以下步驟:
<manifest ...>
<application ...>
...
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="." />
</paths>
fileUri
,您可以執(zhí)行以下操作:File file = new File(fileUri.getPath());
boolean isDeleted = file.delete();
if (isDeleted) {
// 文件刪除成功
} else {
// 文件刪除失敗
}
Uri fileUri = FileProvider.getUriForFile(context, context.getApplicationContext().getPackageName() + ".fileprovider", file);
int rowsDeleted = getContentResolver().delete(fileUri, null, null);
if (rowsDeleted > 0) {
// 文件刪除成功,通知其他應(yīng)用程序
} else {
// 文件刪除失敗
}
請(qǐng)注意,當(dāng)您使用FileProvider的getUriForFile()方法時(shí),您需要傳遞一個(gè)文件對(duì)象。因此,在刪除文件之前,您需要確保已經(jīng)獲取了這個(gè)文件的URI。