Cannot Write On Micro SDCard On BlackBerry
问题 I am trying to save some files on micro SDCard. To check the availability of SDCard, I am using the following method; private boolean isSdCardReady() { Enumeration e = FileSystemRegistry.listRoots(); while (e.hasMoreElements()) { if (e.nextElement().toString().equalsIgnoreCase("sdcard/")) { return true; } } return false; } Even if this method returns true, when I try to save files, it gives exception net.rim.device.api.io.file.FileIOException: File system is not ready . What does this means?