卸载应用程序时删除外部存储文件

时间:2017-02-16 11:40:23

标签: android android-download-manager

我的应用程序使用DownloadManager下载文件,这些文件正在正常下载,但是当我卸载应用程序时,所有文件都被删除了。

File direct = new File(Environment.getExternalStorageDirectory()
            + "/FolderName");
DownloadManager mgr = (DownloadManager) this.getSystemService(Context.DOWNLOAD_SERVICE);

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

request.setAllowedNetworkTypes(
            DownloadManager.Request.NETWORK_WIFI
                    | DownloadManager.Request.NETWORK_MOBILE)
            .setAllowedOverRoaming(false).setTitle(file_name)
            .setDescription("")
            .setDestinationInExternalPublicDir("/FolderName", file_name);

当我卸载应用程序时,我的完整数据已经消失。

现在我发现这只发生在摩托罗拉设备上。

提前致谢。

0 个答案:

没有答案