I have to create a multiple directory like this path("images/wallpaper/flower"). It should be stored in the External Memory of the phone.
How to do it? Any Idea?
I have to create a multiple directory like this path("images/wallpaper/flower"). It should be stored in the External Memory of the phone.
How to do it? Any Idea?
Just get the SDcard path using Environment.getExternalStorageDirectory(); and then create the dir structure with the Java's File class.
You should know that the sdcard can be unmounted so check it's status first.