0
I want the files that are downloaded by my Webview app to be in a custom folder. Currently it is going to the folder "Downloads" and wanted it to be for a folder with the name of the app and that folder is created automatically.
wb.setDownloadListener(new DownloadListener() {
@SuppressLint("InlinedApi") public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimetype,
long contentLength) {
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse(url));
request.allowScanningByMediaScanner();
final String filename = URLUtil.guessFileName(url, contentDisposition, mimetype);
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED); //Notify client once download is completed!
request.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, filename);
DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
dm.enqueue(request);
Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT); //This is important!
intent.addCategory(Intent.CATEGORY_OPENABLE); //CATEGORY.OPENABLE
intent.setType("*/*");//any application,any extension
Toast.makeText(getApplicationContext(), "Baixando!", //To notify the Client that the file is being downloaded
Toast.LENGTH_LONG).show();
}
});
How do I do it in this code there?
worked out! Thank you!
– user41630
a good is to give a studied in the libraries of
IO
– Hebert Lima
gave it right, I’m very grateful.
– user41630