在android中卸载应用程序时如何防止删除应用程序文件

时间:2017-02-09 15:21:05

标签: android image file download

DownloadManager mgr = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);

Uri downloadUri = Uri.parse(file_url);
DownloadManager.Request request = new DownloadManager.Request(downloadUri);

request.setAllowedNetworkTypes(
        DownloadManager.Request.NETWORK_WIFI | DownloadManager.Request.NETWORK_MOBILE)
        .setTitle("")
        .setDestinationInExternalPublicDir(Environment.DIRECTORY_PICTURES + "/MyApp", tsLong.toString() + ".jpg");

下载文件的路径在这里:

new File(Environment.DIRECTORY_PICTURES + "/MyApp")

我发现一旦应用程序被卸载,该文件夹也会被删除,如何保存?

非常感谢。

0 个答案:

没有答案