Wednesday, June 29, 2011

Checking SD card Existance

The below method returns true if the sd card is present on the mobile else it returns false.
public static boolean isSdPresent()
{                
      return android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);        }

No comments:

Post a Comment