How to check whether SDCARD in mounted in android?

This simple code snippet checks whether SDCARD is mounted in an android device or not.

if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {

    // SD Card is mounted

} else {

    // SD Card is not mounted

}