get Sd card Path : SDCard « Hardware « Android

Home
Android
1.2D Graphics
2.Animation
3.Core Class
4.Database
5.Date Type
6.Development
7.File
8.Game
9.Hardware
10.Media
11.Network
12.Security
13.UI
14.User Event
Android » Hardware » SDCard 
get Sd card Path
   
import java.io.File;

import android.os.Environment;

class Common {
  public static String getSdcardPath() {
    File sdDir = null;
    boolean sdCardExist = Environment.getExternalStorageState().equals(
        android.os.Environment.MEDIA_MOUNTED)
    if (sdCardExist) {
      sdDir = Environment.getExternalStorageDirectory();
    }

    return sdDir.toString() "/";
  }
}

   
    
    
  
Related examples in the same category
1.Load image from mounted sdcard
2.Uri for sdcard
3.Get SDCard Megs Free
4.SDCard File Util
5.create File In SDCard
6.export the current database to the SDcard
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.