Blackberry - Available directory

So far, the directory I can find to write file into are

/store/home/user or /SDCard/ directory

You can use the following to list all available root.



Enumeration e = FileSystemRegistry.listRoots();
while(e.hasMoreElements()){
System.out.println("Root: " + e.nextElement().toString());
}

Comments

Popular Posts