Karthik wrote: > I am using Android 1.1. I am not able to create folder under /data > directory. But permissions looks like read/write. I checked /system it > is Read only. > > Is it any way create directory like /data/myFiles/Audio ?
No. Your two places for creating files are: -- files in your app-local storage area (e.g., getFilesDir()) -- files on the external storage, like the SD card (i.e., Environment.getExternalStorageDirectory()) -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

