我无法在 mini x plus h24 中写入外部 sd ( /mnt/extsd )
我已经在清单中插入
系统有两个 sd 卡,第一个可以通过 Environment.getExternalStorageDirectory() 访问,但第二个只能通过绝对路径访问
try{
File file3 = new File("/mnt/extsd/", "file.txt");
BufferedWriter writer = new BufferedWriter(new FileWriter(file3));
writer.write("hello");
writer.flush();
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
异常向我返回此消息 /mnt/extsd/file.txt: open failed: EACCES (Permissio denied)
有什么建议么?