How can i Use External Storage in android

后端 未结 2 370
刺人心
刺人心 2020-12-21 15:57

This is for the first time i am using external storage in android. I need some help how can i perform different operations such as how to check whether External Storage is a

相关标签:
2条回答
  • 2020-12-21 16:19

    how to check whether External Storage is available or not?

    Use Environment.getExternalStorageState().

    How to write files or pictures into storage

    Use standard Java I/O, working off a directory built using Environment.getExternalStorageDirectory().

    0 讨论(0)
  • 2020-12-21 16:34

    To clarify the first part of CommonsWare's answer (I couldn't seem to add a comment to the comment stream): you want to check that...

    Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED);
    

    ... is true.

    0 讨论(0)
提交回复
热议问题