Android DownloadManager illegalstateexception incapaz de criar diretório

Estou fazendo app android que está usando o DownloadManager. Eu quero baixar o arquivo na pasta que eu fiz. Mas essas fontes não funcionam. E aconteça IllegalstateException. O que eu posso fazer??

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);

questionAnswers(2)

yourAnswerToTheQuestion