I tried to create an external storage public directory in my main root directory and wrote the following lines of code. The code compiles properly, and shared preferences are updated correctly, but the root folder is not created in the device.

I use Atrix (it has this Internal Storage and no SD card). I also tried downloading the Atrix Addon for Gingerbread, and I tried compiling this in the emulator and the program crashes. (But it works perfectly well in real device.)

  1. Why is the emulator crashing (I have 1 GB SD card in emulator)? (It crashes with a null pointer exception)

  2. why is the folder not created in the real device?

Device Configurations:

MinSDK - 8 SDK version - 10

Code Snippet

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.ixfer_main);

        File rootDirectory = new File(getExternalFilesDir(null),"/AppRoot");
        rootDirectory.mkdirs(); // also tried using mkdir() - still no good

EDIT: It was the permissions issue. Fixed and works now.

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
link|improve this question

Try removing the leading "/" from "/AppRoot". – mportuesisf Aug 17 '11 at 17:48
@mportuesisf - Nope that doesn't work either, i tried that as well – devgp Aug 17 '11 at 17:50
Do you have external storage permission in the manifest? – Chris Stratton Aug 17 '11 at 17:50
@Chris Stratton - great catch, yeap it was the permissions.. Thanks – devgp Aug 17 '11 at 17:55
feedback

2 Answers

up vote 0 down vote accepted

In order to access the file system, you must have the proper permission added to your android manifest xml file. Without the appropriate permissions, your file object won't be created and you'll get a null reference.

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.app.myapp" >
  <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
...
</manifest>
link|improve this answer
great catch, yeap it was the permissions.. Thanks – devgp Aug 17 '11 at 17:55
feedback

to complete previous answer:

do not forget to check External Storage State before doing anything on it.

  if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
  /* do job on external storage */
  }
link|improve this answer
Nice point, thanx for letting me know, i did not having this check condition before. – devgp Aug 17 '11 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.