FileNotFoundException (permission denied) when trying to write file to sdcard in Android
问题 As you can notice from title, I have a problem with writing file to sdcard in Android. I've checked this question but it didn't help me. I want to write file that will be in public space on sdcard so that any other app could read it. First, I check if sdcard is mounted: Environment.getExternalStorageState(); Then, I run this code: File baseDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS); baseDir.mkdirs(); File file = new File(baseDir, "file.txt"); try {