16.09.2010 12:09, karteek пишет:
Except that hard-coding "/sdcard" is bad - it's "/mnt/sdcard" in Froyo. Use Environment.getExternalStorageDirectory instead.You can use File apis as follows File f=new File("/sdcard"); if(f.isDirectory()){ String files[]= f.list(); for(int i=0;i<files.length;i++){ Log.d("",files[i]);}
-- Kostya Vasilyev -- WiFi Manager + pretty widget -- http://kmansoft.wordpress.com -- 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

