8

Reference: http://developer.android.com/reference/android/os/Environment.html#getExternalStorageDirectory()

The paragraph addressing devices with multiple "external" storage directories has a hanging sentence explaining what to do about secondary storage:

"In devices with multiple "external" storage directories, this directory represents the "primary" external storage that the user will interact with. Access to secondary storage is available through"

What should come after the "through?"

An issue for this is already open here but nobody seems to care.

If anyone knows what are the methods to access the secondary storage, please answer here.

Thx.

Mogsdad
  • 44,709
  • 21
  • 151
  • 275
  • 2
    There is a similar topic being discussed here: http://stackoverflow.com/questions/9340332/how-can-i-get-the-list-of-mounted-external-storage-of-android-device/ – Felipe Vasconcelos May 30 '14 at 16:03

1 Answers1

0

From the current doc:

Access to secondary storage is available through getExternalFilesDirs(String), getExternalCacheDirs(), and getExternalMediaDirs().

rds
  • 26,253
  • 19
  • 107
  • 134