web-dev-qa-db-ja.com

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

現在、これらの削除機能はどれも実際にファイルを削除していません。 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" />
40

このコードでこれをテストしてみませんか:

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"); 

次に、ファイルを削除してください。

85

これを試してください。それは私のために働いています。

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);
14
Krishna

このコードをNougatエミュレーターでテストし、動作しました:

マニフェストに追加:

<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フォルダーとprovider_paths.xmlに空の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);
7
CodeToLife

あなたはあなたの答えを見つけましたが、それは私にとってはうまくいきませんでした。削除はfalseを返し続けたので、私は次を試してみましたが、うまくいきました(選択した答えが機能しなかった他の人のために):

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

システムアウトは明らかに無視することができますが、削除を確認するための便宜のために置きました。

4
Arijit