how to access downloads folder in android?

后端 未结 6 1666
陌清茗
陌清茗 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:43

    You should add next permission:

    
    

    And then here is usages in code:

    val externalFilesDir = context.getExternalFilesDir(DIRECTORY_DOWNLOADS)
    

提交回复
热议问题