我正在尝试在奥利奥创建一个目录,但它失败了。但是在牛轧糖及其下方工作正常。 我已经添加了Runtime Storage Permission。
File myDir = null;
boolean status = false;
File downloadedImage;
try {
URL url = new URL(mediaUrl);
URLConnection connection = url.openConnection();
connection.connect();
fileLength = connection.getContentLength();
myDir = new File(Environment.getExternalStorageDirectory(),"/RealInstagram/media/");
if (!myDir.exists()) {
myDir.mkdirs();
}
}