List the files in Download directory of the Android phone

前端 未结 2 1886
一生所求
一生所求 2021-02-09 18:48

I am using the following code for trying to list the files in Download directory.

I build the apk, install it on my phone and then run it. I have files in both Internal

2条回答
  •  梦毁少年i
    2021-02-09 19:49

    Use :

    Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
    

    to get the downloaded directory,

    and use File.list() to get an array with the list of files in the directory.

提交回复
热议问题