11-21-2009 12:13 PM
Hi all,
I want to access black berry internal folders.
I have used the FileSystemRegistry class.Following is the code
Enumeration rootEnum = FileSystemRegistry.listRoots();
while (rootEnum.hasMoreElements()) {
String file = (String) rootEnum.nextElement();
}
By using the above code I will get all the files,How can I differentiate intenal folders from extenal folders.
What is generic way to access the internal folders.