Nie można utworzyć folderu na karcie extsd
Mam tablet z systemem Android, na którym zewnętrzna karta SD o nazwie „/ mnt / extsd” i jej wewnętrzna pamięć o nazwie „/ mnt / sdcard”.
Kiedy próbuję utworzyć folder w „/ mnt / sdcard” za pomocą następującego kodu. Aplikacja pomyślnie utworzyła folder w katalogu głównym, podczas gdy próbuję utworzyć folder w "/ mnt / extsd" to toast wyjątek "open failed: EACCESS (Odmowa uprawnień)"
// 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() + "");
}
Oczywisty
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Każda pomoc od was będzie bardzo znacząca. Proszę pomóż...:(