how to access downloads folder in android?

后端 未结 6 1672
陌清茗
陌清茗 2020-11-28 21:08

I am new android, i\'m making an app in which one can download files to downloads folder (using Download Manager). I can see pictures if i go to downloads folder in emulator

6条回答
  •  爱一瞬间的悲伤
    2020-11-28 21:42

    For your first question try

    Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); 
    

    (available since API 8)

    To access individual files in this directory use either File.list() or File.listFiles(). Seems that reporting download progress is only possible in notification, see here.

提交回复
热议问题