Comment puis-je supprimer des fichiers programmatically sur Android?

je suis sur 4.4.2, essayant de supprimer un fichier (image) via uri. Voici mon code:

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());
      }
}

pour l'instant, aucune de ces fonctions de suppression n'est en train de supprimer le fichier. J'ai aussi ça dans mon AndroidManifest.xml:

<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" />
30
demandé sur Brian Tompsett - 汤莱恩 2014-07-09 21:03:05

4 réponses

Pourquoi ne pas tester avec ce code:

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());
    }
}

je pense qu'une partie du problème est que vous n'essayez jamais de supprimer le fichier, vous continuez juste à créer une variable qui a un appel de méthode.

alors dans votre cas, vous pouvez essayer:

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

Cependant, je pense que c'est un peu exagéré.

Vous avez ajouté un commentaire que vous utilisez un répertoire externe plutôt que d'un uri. A la place, vous devriez ajouter quelque chose comme:

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

alors essayez de supprimer le fichier.

70
répondu Shawnic Hedgehog 2017-02-12 08:57:40

essayez celui-ci. Il est travaillé pour moi.

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.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(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, id);
                                    contentResolver.delete(deleteUri, null, null);
                                } else {
                                    // File not found in media store DB
                                }
                                c.close();
                            }
                        }, 5000);
13
répondu Krishna 2015-01-19 11:21:44

j'ai testé ce code sur L'émulateur Nougat et il a fonctionné:

Dans le manifeste ajouter:

<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>

créer un dossier xml vide dans le dossier res et dans le passé dans provider_paths.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>

alors mettez le prochain fragment dans votre code (par exemple fragment):

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);
4
répondu CodeToLife 2017-06-06 11:55:20

je vois que vous avez trouvé votre réponse, mais ça n'a pas marché pour moi. Supprimer revenait toujours faux, donc j'ai essayé ce qui suit, et cela a fonctionné (Pour quelqu'un d'autre pour qui la réponse choisie ne fonctionne pas):

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

le système peut être ignoré évidemment, je l'ai mis pour la commodité de confirmer la suppression.

1
répondu Arijit 2015-05-27 04:39:57