[android-developers] Re: List All files in the directory

2009-05-07 Thread Muthu Kumar K.
Hi, Thanks for your timely help. It is working fine. :) Thanks, Muthu Kumar K. On May 7, 12:54 pm, matthias wrote: > Hi, > > not sure about the app dir, but for accessing e.g. the shared_prefs > directory, you would do something > like this (in an Activity or Service): > >         PackageManager

[android-developers] Re: List All files in the directory

2009-05-07 Thread matthias
Hi, not sure about the app dir, but for accessing e.g. the shared_prefs directory, you would do something like this (in an Activity or Service): PackageManager pm = getPackageManager(); ApplicationInfo appInfo = pm.getApplicationInfo(getPackageName (), 0); File sharedPre

[android-developers] Re: List All files in the directory

2009-05-07 Thread matthias
Hi, for accessing e.g. the shared_prefs directory, you would do something like this (in an Activity or Service): PackageManager pm = getPackageManager(); ApplicationInfo appInfo = pm.getApplicationInfo(getPackageName (), 0); final List list = Arrays.asList(files);