Some indications: http://developer.android.com/guide/topics/data/data-storage.html#filesExternal
If you use API level 8 or higher, use getExternalFilesDir () to open a file representing the external memory directory in which you should save your files. This method takes a type parameter that indicates the type of subdirectory you want, for example DIRECTORY_MUSIC and DIRECTORY_RINGTONES (pass null to get the root of the directory of your application file). If necessary, this method will create the appropriate directory. (...)
If you are using API level 7 or lower, use getExternalStorageDirectory () to open a file representing the root of the external storage. Then you should write your data in the following directory:
/ Android / data / "package_name" / files /
package_name is your Java-style package name, for example, com.example.android.app.
If the user device works with API level 8 or higher and they delete your application, this directory and all its contents will be deleted.
source share