This is always the best approach:
java
Environment.getExternalStorageDirectory();
You could also get the environmental variable which is on all Android devices like this:
java
String sdcardPath = System.getenv("EXTERNAL_STORAGE");