Não é possível criar pasta no cartão extsd
Eu tenho um tablet Android, onde o cartão SD externo chamado "/ mnt / extsd" e seu armazenamento interno chamado "/ mnt / sdcard".
Quando eu tento criar uma pasta em "/ mnt / sdcard" pelo seguinte código. Aplicação cria com sucesso pasta no diretório raiz, enquanto eu tento criar pasta em "/ mnt / extsd" ele brindar uma exceção "open failed: EACCESS (Permission denied)"
// create a File object for the parent directory
File root_directory = new File("/mnt/extsd/abc/");
// have the object build the directory structure, if needed.
root_directory.mkdirs();
// create a File object for the output file
File outputFile = new File(root_directory, "abc_checking");
// now attach the OutputStream to the file object, instead of a String representation
try {
FileOutputStream fos = new FileOutputStream(outputFile);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
Utility.showDialogue(getActivity(), e.getMessage() + "");
}
Manifesto
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Qualquer ajuda de vocês será muito apreciável. Por favor ajude...:(