Delete file from internal storage

前端 未结 8 1650
借酒劲吻你
借酒劲吻你 2020-11-30 00:28

I\'m trying to delete images stored in internal storage. I\'ve come up with this so far:

File dir = getFilesDir();
File file = new File(dir, id+\".jpg\");
bo         


        
8条回答
  •  爱一瞬间的悲伤
    2020-11-30 00:45

    This is an old topic, but I will add my experience, maybe someone finds this helpful

    >     2019-11-12 20:05:50.178 27764-27764/com.strba.myapplicationx I/File: /storage/emulated/0/Android/data/com.strba.myapplicationx/files/Readings/JPEG_20191112_200550_4444350520538787768.jpg//file when it was created
    
    2019-11-12 20:05:58.801 27764-27764/com.strba.myapplicationx I/File: content://com.strba.myapplicationx.fileprovider/my_images/JPEG_20191112_200550_4444350520538787768.jpg //same file when trying to delete it
    

    solution1:

                  Uri uriDelete=Uri.parse (adapter.getNoteAt (viewHolder.getAdapterPosition ()).getImageuri ());//getter getImageuri on my object from adapter that returns String with content uri
    

    here I initialize Content resolver and delete it with a passed parameter of that URI

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

    solution2(my first solution-from head in this time I do know that ): content resolver exists...

                  String path = "/storage/emulated/0/Android/data/com.strba.myapplicationx/files/Readings/" +
                        adapter.getNoteAt (viewHolder.getAdapterPosition ()).getImageuri ().substring (58);
    
                File file = new File (path);
                if (file != null) {
                    file.delete ();
                }
    

    Hope that this will be helpful to someone happy coding

提交回复
热议问题