首页 > 解决方案 > 如何更改下载目录

问题描述

如何将 getrootPatch 目录更改为公共目录。当我使用此目录下载文件时,它正在下载到 Adroid/Data/app.package.com 文件夹..??

我讲这个问题如何使用PRDownloader库来下载文件

public static String getRootDirPath(Context context) {
    if (Environment.MEDIA_MOUNTED.equals(Environment.getExternalStorageState())) {
        File file = ContextCompat.getExternalFilesDirs(context.getApplicationContext(),
                null)[0];
        return file.getAbsolutePath();
    } else {
        return context.getApplicationContext().getFilesDir().getAbsolutePath();
    }
}

标签: androiddirectorydownloadpatch

解决方案


推荐阅读