Programming Tips - Android: How can I find the second sdcard?

Date: 2017feb21 OS: Android Language: Java Keywords: SD, card Q. Android: How can I find the second sdcard? A. One of these should work:
String path1 = System.getenv("SECONDARY_STORAGE"); String path2 = System.getenv("EXTERNAL_SDCARD_STORAGE");
By the way, how to get the *first* sdcard:
Environment.getExternalStorageDir()
Alternate approaches: - Look at everything called *card* below /mnt - Look for /sdcard and /extscard