How to access External Micro SD card of the phone?

前端 未结 6 1568
借酒劲吻你
借酒劲吻你 2020-12-03 02:00

Does anyone know how can I get SD card of the phone?

I know that someone will tell me its getExternalStorageDirectory() or Environment.getExterna

6条回答
  •  执笔经年
    2020-12-03 02:44

    You can below condition to check whether SDCard is available or not

    if (android.os.Environment.getExternalStorageState().equals(
                android.os.Environment.MEDIA_MOUNTED)) {
    
         //Check for the file
         File appFolder = new File(Environment.getExternalStorageDirectory() + File.separator
                    + context.getString(R.string.app_name));
    
         boolean exist = appFolder.exists();
    }
    

提交回复
热议问题