标签: java android android-sdcard
我正在尝试找到外部SD卡的路径名。
我的外部SD卡的路径名在/storage/A085-60BC
/storage/A085-60BC
当我使用时 String SDDirectoryPath = Environment.getExternalStorageDirectory().getAbsolutePath(); ,它给了我内部存储的路径。
String SDDirectoryPath = Environment.getExternalStorageDirectory().getAbsolutePath();
我尝试了其他各种方法,例如this和this以及enter link description here
但它们似乎都没有用。所有这些只是返回相同的内部存储器存储路径。