开发者

How to change the default folder of downloading (for browser)?

开发者 https://www.devze.com 2023-03-29 13:23 出处:网络
I am using this code to download songs from a Uri. String url = \"url of song that will download\"; Intent intent = new Intent(Intent.ACTION_VIEW);

I am using this code to download songs from a Uri.

String url = "url of song that will download";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
Download.this.startActivity(intent);
Download.this.finish();
Toast.makeText(Download.this,
  "The file you are downloading will be saved in your SD Card downloads folder.",
  Toast.LENGTH_LONG).show();

By default my songs saved in SDCards/Downloads folder.i want to save my songs in SDCards/Devic开发者_运维技巧e folder.

Kindly suggest me, how can i change the downloading path of browser programmatically.

Thanks in Advance.


As far as I'm aware, you cannot change browser settings by code. Sorry.

0

精彩评论

暂无评论...
验证码 换一张
取 消