Android 10: What are my options to save files on external storage into a directory called "/sdcard/my-app/"

24,689

Solution 1

In Android Q direct File access is disabled by default for the apps outside their private folders. Here few strategies you can use in your case:

  1. Use the manifest option requestLegacyExternalStorage to have the old behavior but it won't work anymore with Android R, so it's really a short term solution;
  2. Save your files using getExternalFilesDir() method. It's your private folder, other apps could access these files only if they have READ_EXTERNAL_STORAGE permission. In this case it would be good to use FileProvider to grant access to other apps to your files.
  3. Use the method getPrimaryStorageVolume().createOpenDocumentTreeIntent() of class StorageManager to ask for access to the extenal primary volume. In this case you need user consent and you won't be able to use File api directly anyway, but using DocumentFile class you have a very similar interface, so this is the solution closer to the old behavior. It works if you need to perform operations in foreground and background, i.e. without user interaction with the exception the first interaction to request the permission.

I link Flipper library for point 3, it helps to manage files like in older android versions.

Solution 2

From Android 11 onwards you need to add MANAGE_EXTERNAL_STORAGE permission in the Manifest if you need access to external file directories.

An app can request All files access from the user by doing the following:

1. Declare the MANAGE_EXTERNAL_STORAGE permission in the manifest.

2. Use the ACTION_MANAGE_ALL_FILES_ACCESS_PERMISSION intent action to direct users to a system settings page where they can enable the following option for your app: Allow access to manage all files.

3. To determine whether your app has been granted the MANAGE_EXTERNAL_STORAGE permission, call Environment.isExternalStorageManager().

Read it here here

Solution 3

for above android Qenter image description here This is code is working fine to save Image on External Storage //don't forget to add Manifest permission //



        package com.myretro.saveimager;
        
        import androidx.appcompat.app.AppCompatActivity;
        
        import android.content.ContentResolver;
        import android.content.ContentValues;
        import android.graphics.Bitmap;
        import android.graphics.drawable.BitmapDrawable;
        import android.net.Uri;
        import android.os.Build;
        import android.os.Bundle;
        import android.os.Environment;
        import android.provider.MediaStore;
        import android.widget.Button;
        import android.widget.ImageView;
        import android.widget.Toast;
        
        import java.io.File;
        import java.io.FileNotFoundException;
        import java.io.OutputStream;
        
        public class MainActivity extends AppCompatActivity {
            private Button btnsave;
            private ImageView myImage;
        
            @Override
            protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.activity_main);
                btnsave = findViewById(R.id.button);
                myImage = findViewById(R.id.imageView);
        
        
                btnsave.setOnClickListener(view -> {
                    BitmapDrawable bitmap1 = (BitmapDrawable) myImage.getDrawable();
                    Bitmap bitmap = bitmap1.getBitmap();
        
                    saveImmageIntoExternalStrogaeaboveQ(bitmap);
                });
            }
        
            private void saveImmageIntoExternalStrogaeaboveQ(Bitmap bitmap) {
                OutputStream outputStream;
        
                if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
                    ContentResolver contentResolver = getContentResolver();
        
                    ContentValues mValue = new ContentValues();
        
                    mValue.put(MediaStore.MediaColumns.DISPLAY_NAME, "hacker" + ".jpg");
                    mValue.put(MediaStore.MediaColumns.MIME_TYPE, "image/jpg");
                    mValue.put(MediaStore.MediaColumns.RELATIVE_PATH, Environment.DIRECTORY_PICTURES + File.separator + "myimage");
                    Uri imageuri = contentResolver.insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, mValue);
        
                    try {
                        outputStream = contentResolver.openOutputStream(imageuri);
                        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, outputStream);
                        Toast.makeText(this, "Image Saved SuccessFull", Toast.LENGTH_SHORT).show();
                    } catch (FileNotFoundException e) {
                        Toast.makeText(this, "Something went wrong " + e.getMessage(), Toast.LENGTH_SHORT).show();
                        e.printStackTrace();
                    }
        
                } else {
                    //old method to write
                }
    
      }
    
    
Share:
24,689
Daniel F
Author by

Daniel F

Updated on April 30, 2021

Comments

  • Daniel F
    Daniel F about 3 years

    Up until Android Pie I always stored files which the app needed to get stored on /sdcard/my-app/, which I got via

    File fBaseDir = new File(Environment.getExternalStorageDirectory(), "my-app");

    One of my App stores hundreds (up to multiple thousands) of favicons in /sdcard/my-app/favicons, and when the user creates a backup of the app, it gets stored in /sdcard/my-app/backups. Webpage-Screenshots taken by Google Chrome when shared with my app are stored in /sdcard/my-app/screenshots, and so on.

    When I uninstall the app, I can reinstall it later and still have all the favicons, screenshots and the backups available for restoring the state and not having to re-download all the favicons (and possibly having lost all the other data).

    I can also easily create a backup of the /sdcard/my-app/ directory by copying it to my PC, and restore it on another phone, for example when I migrate to a new device.

    I can also use a file explorer to see which files are in that directory, and select and email them or copy them to Google Drive, or delete some of them specifically (like old backup files).

    With Android 10 this approach has collapsed. I cannot add the favicons to the Images Media-Folder, because they are no real images, they would clutter the view unnecessarily and possibly ban my developer account from the Play Store for doing this. I also don't want to store all this data in an App-Private directory, because it will get deleted when the app gets uninstalled, and because other apps like an explorer cannot access them.

    What are my options? Manually selecting files or directories is not an option, unless the directory only needs to be selected once and then access is granted forever (to read and write files).

    I never read or write outside of /sdcard/my-app/.

  • HB.
    HB. over 4 years
    So if I save the file to my application's directory (context.getExternalFilesDir), I will be able to access that file by using File mFile = new File(PathToExternalFilesDir);? This will then return a file:// Uri when calling mFile.getAbsoluteFile() - Can my application then consume/use that file uri?
  • greywolf82
    greywolf82 over 4 years
    File interface is allowed in your private directory
  • Anoop M Maddasseri
    Anoop M Maddasseri over 4 years
    @HB. You're right, apps can access to its specific directory even without any permission since Android-Q. Also, no other applications will have access to a specific app sandbox dir. See the scoped storage affects summarized table developer.android.com/training/data-storage/files/…
  • New Guy
    New Guy over 4 years
    Your point 2 is tricky. I've tried using a DownloadManager and setting the destination to getExternalFilesDir(). The download supposedly completes but once I check if the file exists, it does not.
  • Jayesh Rathod
    Jayesh Rathod over 4 years
    Sorry bro! Can't understand how to check file exist or not and can't properly understand how to write code using Flipper. So, I down voting this answer! Because I really need help..
  • Pztar
    Pztar over 3 years
    This isn't completely right. It'll work as long as you don't publish your app on the Play Store. However, if you do publish it, your app has to fall into a specific set of use cases in order to be granted the permission. developer.android.com/training/data-storage/…
  • Aakash Kumar
    Aakash Kumar about 3 years
    <uses-permission android:name="android.permission.ACCESS_MEDIA_LOCATION"/>
  • mahesh kumar
    mahesh kumar almost 3 years
    This is my Previous ans. It will work 100% stackoverflow.com/questions/62631105/…