Android examples for Hardware:SD Card
get SD Card Dir
//package com.java2s; import android.os.Environment; public class Main { public static String getSDCardDir() { String sdcardPath = Environment.getExternalStorageDirectory() .getPath();// www .j av a 2 s . c o m if (null != sdcardPath && !sdcardPath.endsWith("/")) { sdcardPath = sdcardPath + "/"; } return sdcardPath; } }