Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can't create folder on external storage on android

My development phone is a Nexus 5, running Android 4.4.2.

In my application, I am attempting to create a folder on external storage that will store debug information for my application. Basically it will contain all the commands executed by the application, so that when a user encounters a problem, I have the option of having them send me the information from the debug folder to analyse.

I started off by trying to write a file to the folder, but found there was an error creating the folder. At first I was using mkdir(), then I moved onto mkdirs() which also didn't work.

I have <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> in my manifest.

Here is the code for creating the folder:

    File folder = new File(Environment.getExternalStorageDirectory() + "/DebugData");

    String path = folder.getPath();

    if(!folder.mkdirs() || !folder.exists()){        
            Log.e(LOG_TAG, path + " failed");
        } else {
            Log.d(LOG_TAG, path + " succeeded");
        } 

Here is what I have also tried:

    //Check SD card state
    String state = Environment.getExternalStorageState();
    if (Environment.MEDIA_MOUNTED_READ_ONLY.equals(state) || !Environment.MEDIA_MOUNTED.equals(state)) {
        Log.e(LOG_TAG, "Error: external storage is read only or unavailable");
    } else {
        Log.d(LOG_TAG, "External storage is not read only or unavailable");
    }

This returns that the external storage is not read only or unavailable.

I have also tried different paths, such as File folder = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), "Folder1");

This is where it became really confusing.

I tried development on different phones. Firstly, I grabbed a Galaxy S4 GT-i9505 running Android 4.2.2 and it worked. I was able to create the folders and write to them. This showed me that the code was working. Also the path returned by running the code on the S4 and Nexus 5 was the same.

Then I thought it may be android version specific. So I grabbed a Nexus 4 with Android 4.4.2 and the code worked on it as well. Created the folders and allowed me to write to them.

None of the phones are rooted and are all stock standard. There's no special applications or anything I can think of settings wise on the Nexus 5 that would cause permissions problems. The connection is set to Media Device (MTP).

EDIT:

I should add that I have tried the follow which also did not work:

  • Writing a file to the root directory of the external storage
  • Creating the file in the external storage root directory and writing to it
  • Creating a folder in a path outlined and writing a file to it
  • Creating the file in the path outlined and writing to it

I am confused as to what is causing this, is there anything else I can test or change to fix the issue?

EDIT 2:

Turns out the issue was due to, I think, indexing.

Basically all of the other devices I tested on, allowed me to reconnect the USB connection and view the created files and folders.

For some reason my Nexus 5 doesn't index the folders/files, even though they exist.

I downloaded a different 3rd party file explorer application and noticed all the folders and files were there.

So to view these folders and files via USB debugging, I have to restart the phone in order to re-index them, which seems quite annoying but it is better than it not working at all.

Thanks.

like image 588
benallansmith Avatar asked Mar 12 '14 23:03

benallansmith


People also ask

How do I allow external storage on Android?

On the Settings > Privacy > Permission manager > Files and media page, each app that has the permission is listed under Allowed for all files. If your app targets Android 11, keep in mind that this access to "all files" is read-only.

How do I grant permission to write external storage?

To read and write data to external storage, the app required WRITE_EXTERNAL_STORAGE and READ_EXTERNAL_STORAGE system permission. These permissions are added to the AndroidManifest. xml file. Add these permissions just after the package name.


1 Answers

In terms of this being an indexing issue with the Nexus, this worked for me:

MediaScannerConnection.scanFile(this, new String[] { file.toString() }, null,
        new MediaScannerConnection.OnScanCompletedListener() {
            public void onScanCompleted(String path, Uri uri) {
                Log.i("ExternalStorage", "Scanned " + path + ":");
                Log.i("ExternalStorage", "-> uri=" + uri);
            }
});

You should call it straight after creating and saving the file. By using the scanner, I was able to see newly created files and directories simply by replugging the device in.

According to the docs:

MediaScannerConnection provides a way for applications to pass a newly created or downloaded media file to the media scanner service. The media scanner service will read metadata from the file and add the file to the media content provider.

Hope this helps someone else.

like image 193
Liam George Betsworth Avatar answered Sep 18 '22 11:09

Liam George Betsworth