Android DownloadManager invalidstateexception nie może utworzyć katalogu
Tworzę aplikację na Androida, która korzysta z DownloadManager. Chcę pobrać plik do folderu, który zrobiłem. Ale te źródła nie działają. I zdarzają się IllegalstateException. Co mogę zrobić??
urlToDownload = Uri.parse(URL);
List<String> pathSegments = urlToDownload.getPathSegments();
request = new DownloadManager.Request(urlToDownload);
request.setTitle(Titlename);
request.setDescription("MCPE STORE");
request.setDestinationInExternalPublicDir(
Environment.getExternalStorageDirectory().getAbsolutePath() +
"/MCPE STORE", pathSegments.get(pathSegments.size()-1));
Environment.getExternalStoragePublicDirectory(
Environment.getExternalStorageDirectory().getAbsolutePath() +
"/MCPE STORE").mkdir();
latestId = downloadManager.enqueue(request);